@@ -28,25 +28,25 @@ Learn more about tool calling <https://gorilla.cs.berkeley.edu/leaderboard.html>
28
28
29
29
30
30
## File structure
31
- .
32
- ├── Dockerfile.app - template to run the gradio dashboard.
33
- ├── Dockerfile.ollama - template to run the ollama server.
34
- ├── docker-compose.yml - use the ollama project and gradio dashboard.
35
- ├── docker-compose-codecarbon.yml - use the codecarbon project, ollama and gradio dashboard.
36
- ├── .env - This file contains the environment variables for the project. (Not included in the repository)
37
- ├── app.py - the function_call.py using gradio as the User Interface.
38
- ├── Makefile - This file contains the commands to run the project.
39
- ├── README.md - This file contains the project documentation. This is the file you are currently reading.
40
- ├── requirements.txt - This file contains the dependencies for the project.
41
- ├── summary.png - How function calling works with a diagram.
42
- ├── tests - This directory contains the test files for the project.
43
- │ ├── __ init__ .py - This file initializes the tests directory as a package.
44
- │ ├── test_cases.py - This file contains the test cases for the project.
45
- │ └── test_run.py - This file contains the code to run the test cases for the function calling LLM.
46
- └── utils - This directory contains the utility files for the project.
47
- │ ├── __ init__ .py - This file initializes the utils directory as a package.
48
- │ ├── function_call.py - This file contains the code to call a function using LLMs.
49
- │ └── communication_apis.py - This file contains the code to do with communication apis & experiments.
31
+ .
32
+ ├── Dockerfile.app - template to run the gradio dashboard.
33
+ ├── Dockerfile.ollama - template to run the ollama server.
34
+ ├── docker-compose.yml - use the ollama project and gradio dashboard.
35
+ ├── docker-compose-codecarbon.yml - use the codecarbon project, ollama and gradio dashboard.
36
+ ├── .env - This file contains the environment variables for the project. (Not included in the repository)
37
+ ├── app.py - the function_call.py using gradio as the User Interface.
38
+ ├── Makefile - This file contains the commands to run the project.
39
+ ├── README.md - This file contains the project documentation. This is the file you are currently reading.
40
+ ├── requirements.txt - This file contains the dependencies for the project.
41
+ ├── summary.png - How function calling works with a diagram.
42
+ ├── tests - This directory contains the test files for the project.
43
+ │ ├── __ init__ .py - This file initializes the tests directory as a package.
44
+ │ ├── test_cases.py - This file contains the test cases for the project.
45
+ │ └── test_run.py - This file contains the code to run the test cases for the function calling LLM.
46
+ └── utils - This directory contains the utility files for the project.
47
+ │ ├── __ init__ .py - This file initializes the utils directory as a package.
48
+ │ ├── function_call.py - This file contains the code to call a function using LLMs.
49
+ │ └── communication_apis.py - This file contains the code to do with communication apis & experiments.
50
50
└── voice_stt_mode.py - Gradio tabbed interface with Speech-to-text interface that allows edits and a text interface.
51
51
52
52
### Attribution
0 commit comments