meshagent-agents 0.0.1__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of meshagent-agents might be problematic. Click here for more details.
- {meshagent_agents-0.0.1/meshagent_agents.egg-info → meshagent_agents-0.0.3}/PKG-INFO +4 -4
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/chat.py +13 -1
- meshagent_agents-0.0.3/meshagent/agents/version.py +1 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3/meshagent_agents.egg-info}/PKG-INFO +4 -4
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent_agents.egg-info/requires.txt +3 -3
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/setup.py +3 -3
- meshagent_agents-0.0.1/meshagent/agents/version.py +0 -1
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/LICENSE +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/MANIFEST.in +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/README.md +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/__init__.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/adapter.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/agent.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/context.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/development.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/hosting.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/indexer.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/listener.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/planning.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/prompt.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/pydantic.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/schema.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/single_shot_writer.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/worker.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent/agents/writer.py +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent_agents.egg-info/SOURCES.txt +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent_agents.egg-info/dependency_links.txt +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent_agents.egg-info/top_level.txt +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/pyproject.toml +0 -0
- {meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: meshagent-agents
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Agent Building Blocks for Meshagent
|
|
5
5
|
Home-page:
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -13,9 +13,9 @@ License-File: LICENSE
|
|
|
13
13
|
Requires-Dist: pyjwt>=2.0.0
|
|
14
14
|
Requires-Dist: pytest>=8.3.4
|
|
15
15
|
Requires-Dist: pytest-asyncio>=0.24.0
|
|
16
|
-
Requires-Dist: meshagent-api>=0.0.
|
|
17
|
-
Requires-Dist: meshagent-tools>=0.0.
|
|
18
|
-
Requires-Dist: meshagent-openai>=0.0.
|
|
16
|
+
Requires-Dist: meshagent-api>=0.0.3
|
|
17
|
+
Requires-Dist: meshagent-tools>=0.0.3
|
|
18
|
+
Requires-Dist: meshagent-openai>=0.0.3
|
|
19
19
|
Requires-Dist: pydantic>=2.10.4
|
|
20
20
|
Requires-Dist: pydantic-ai>=0.0.23
|
|
21
21
|
Requires-Dist: chonkie>=0.5.1
|
|
@@ -158,8 +158,20 @@ class ChatBot(SingleRoomAgent):
|
|
|
158
158
|
|
|
159
159
|
if installed == False:
|
|
160
160
|
installed = True
|
|
161
|
-
|
|
161
|
+
try:
|
|
162
|
+
await self.install_requirements(participant_id=participant_id)
|
|
163
|
+
except Exception as e:
|
|
164
|
+
self.room.developer.log_nowait("error", { "text" : f"unable to install requirements: {e}" })
|
|
162
165
|
|
|
166
|
+
error = "I was unable to install the tools I require to operate in the room, I may not function properly."
|
|
167
|
+
chat_context.append_user_message(message=error)
|
|
168
|
+
await self._room.messaging.send_message(
|
|
169
|
+
to=chat_with_participant,
|
|
170
|
+
type="chat",
|
|
171
|
+
message={
|
|
172
|
+
"text": error
|
|
173
|
+
}
|
|
174
|
+
)
|
|
163
175
|
|
|
164
176
|
if received.type == "opened":
|
|
165
177
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: meshagent-agents
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: Agent Building Blocks for Meshagent
|
|
5
5
|
Home-page:
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -13,9 +13,9 @@ License-File: LICENSE
|
|
|
13
13
|
Requires-Dist: pyjwt>=2.0.0
|
|
14
14
|
Requires-Dist: pytest>=8.3.4
|
|
15
15
|
Requires-Dist: pytest-asyncio>=0.24.0
|
|
16
|
-
Requires-Dist: meshagent-api>=0.0.
|
|
17
|
-
Requires-Dist: meshagent-tools>=0.0.
|
|
18
|
-
Requires-Dist: meshagent-openai>=0.0.
|
|
16
|
+
Requires-Dist: meshagent-api>=0.0.3
|
|
17
|
+
Requires-Dist: meshagent-tools>=0.0.3
|
|
18
|
+
Requires-Dist: meshagent-openai>=0.0.3
|
|
19
19
|
Requires-Dist: pydantic>=2.10.4
|
|
20
20
|
Requires-Dist: pydantic-ai>=0.0.23
|
|
21
21
|
Requires-Dist: chonkie>=0.5.1
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
pyjwt>=2.0.0
|
|
2
2
|
pytest>=8.3.4
|
|
3
3
|
pytest-asyncio>=0.24.0
|
|
4
|
-
meshagent-api>=0.0.
|
|
5
|
-
meshagent-tools>=0.0.
|
|
6
|
-
meshagent-openai>=0.0.
|
|
4
|
+
meshagent-api>=0.0.3
|
|
5
|
+
meshagent-tools>=0.0.3
|
|
6
|
+
meshagent-openai>=0.0.3
|
|
7
7
|
pydantic>=2.10.4
|
|
8
8
|
pydantic-ai>=0.0.23
|
|
9
9
|
chonkie>=0.5.1
|
|
@@ -28,9 +28,9 @@ setuptools.setup(
|
|
|
28
28
|
"pyjwt>=2.0.0",
|
|
29
29
|
"pytest>=8.3.4",
|
|
30
30
|
"pytest-asyncio>=0.24.0",
|
|
31
|
-
"meshagent-api>=0.0.
|
|
32
|
-
"meshagent-tools>=0.0.
|
|
33
|
-
"meshagent-openai>=0.0.
|
|
31
|
+
"meshagent-api>=0.0.3",
|
|
32
|
+
"meshagent-tools>=0.0.3",
|
|
33
|
+
"meshagent-openai>=0.0.3",
|
|
34
34
|
"pydantic>=2.10.4",
|
|
35
35
|
"pydantic-ai>=0.0.23",
|
|
36
36
|
"chonkie>=0.5.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.0.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{meshagent_agents-0.0.1 → meshagent_agents-0.0.3}/meshagent_agents.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|