Maga222006 commited on
Commit ·
8da3933
1
Parent(s): 6919e51
MultiagentPersonalAssistant
Browse files- .gitignore +2 -1
- agents/__pycache__/models.cpython-312.pyc +0 -0
- agents/__pycache__/multi_agent.cpython-312.pyc +0 -0
- agents/__pycache__/prompts.cpython-312.pyc +0 -0
- agents/__pycache__/states.cpython-312.pyc +0 -0
- agents/__pycache__/tools.cpython-312.pyc +0 -0
- agents/coder/__pycache__/agent.cpython-312.pyc +0 -0
- agents/coder/__pycache__/prompts.cpython-312.pyc +0 -0
- agents/coder/__pycache__/states.cpython-312.pyc +0 -0
- agents/coder/__pycache__/tools.cpython-312.pyc +0 -0
- agents/multi_agent.py +0 -1
- agents/utils/__pycache__/smart_home.cpython-312.pyc +0 -0
- database_files/main.db +0 -0
.gitignore
CHANGED
|
@@ -1 +1,2 @@
|
|
| 1 |
-
.env
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
test.py
|
agents/__pycache__/models.cpython-312.pyc
ADDED
|
Binary file (873 Bytes). View file
|
|
|
agents/__pycache__/multi_agent.cpython-312.pyc
ADDED
|
Binary file (7.83 kB). View file
|
|
|
agents/__pycache__/prompts.cpython-312.pyc
ADDED
|
Binary file (4.44 kB). View file
|
|
|
agents/__pycache__/states.cpython-312.pyc
ADDED
|
Binary file (1.05 kB). View file
|
|
|
agents/__pycache__/tools.cpython-312.pyc
ADDED
|
Binary file (3.78 kB). View file
|
|
|
agents/coder/__pycache__/agent.cpython-312.pyc
ADDED
|
Binary file (1.95 kB). View file
|
|
|
agents/coder/__pycache__/prompts.cpython-312.pyc
ADDED
|
Binary file (1.59 kB). View file
|
|
|
agents/coder/__pycache__/states.cpython-312.pyc
ADDED
|
Binary file (536 Bytes). View file
|
|
|
agents/coder/__pycache__/tools.cpython-312.pyc
ADDED
|
Binary file (13.9 kB). View file
|
|
|
agents/multi_agent.py
CHANGED
|
@@ -31,7 +31,6 @@ class Assistant:
|
|
| 31 |
latitude=float(self.state['latitude']) if self.state.get('latitude') else None,
|
| 32 |
longitude=float(self.state['longitude']) if self.state.get('longitude') else None,
|
| 33 |
)
|
| 34 |
-
|
| 35 |
config_data = {}
|
| 36 |
config_fields = [
|
| 37 |
'assistant_name', 'openweathermap_api_key', 'github_token',
|
|
|
|
| 31 |
latitude=float(self.state['latitude']) if self.state.get('latitude') else None,
|
| 32 |
longitude=float(self.state['longitude']) if self.state.get('longitude') else None,
|
| 33 |
)
|
|
|
|
| 34 |
config_data = {}
|
| 35 |
config_fields = [
|
| 36 |
'assistant_name', 'openweathermap_api_key', 'github_token',
|
agents/utils/__pycache__/smart_home.cpython-312.pyc
ADDED
|
Binary file (4.42 kB). View file
|
|
|
database_files/main.db
CHANGED
|
Binary files a/database_files/main.db and b/database_files/main.db differ
|
|
|