-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitignore
25 lines (24 loc) · 852 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.env
/src/ToolAgents/__pycache__
/src/ToolAgents/agents/__pycache__
/src/ToolAgents/utilities/__pycache__
/src/ToolAgents/provider/__pycache__
/src/ToolAgents/tests/__pycache__
/src/ToolAgents.egg-info/
/dist
/examples/code_interpreter/.venv
/examples/code_interpreter/__pycache__
/examples/code_agent/__pycache__
/examples/llm_computer_interface/venv_agent
/examples/llm_computer_interface/__pycache__
/src/ToolAgents/provider/chat_api_provider/__pycache__
/src/ToolAgents/provider/hosted_chat_api_provider/__pycache__
/tests/__pycache__
/src/ToolAgents/interfaces/__pycache__
/src/ToolAgents/agent_memory/__pycache__
/tests/__pycache__
/src/ToolAgents/gbnf_grammar_generator/__pycache__
/src/ToolAgents/json_schema_generator/__pycache__
/examples/basic/__pycache__
/src/ToolAgents/llm_documentation/__pycache__
/src/ToolAgents/pipelines/__pycache__