meshagent-agents 0.0.10__tar.gz → 0.0.14__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.

Files changed (31) hide show
  1. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/CHANGELOG.md +6 -0
  2. {meshagent_agents-0.0.10/meshagent_agents.egg-info → meshagent_agents-0.0.14}/PKG-INFO +4 -4
  3. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/agent.py +1 -1
  4. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/chat.py +8 -9
  5. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/hosting.py +1 -1
  6. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/indexer.py +1 -1
  7. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/listener.py +1 -1
  8. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/planning.py +2 -2
  9. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/pydantic.py +1 -1
  10. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/single_shot_writer.py +2 -2
  11. meshagent_agents-0.0.14/meshagent/agents/version.py +1 -0
  12. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/worker.py +1 -2
  13. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/writer.py +1 -2
  14. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14/meshagent_agents.egg-info}/PKG-INFO +4 -4
  15. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent_agents.egg-info/requires.txt +3 -3
  16. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/pyproject.toml +3 -3
  17. meshagent_agents-0.0.10/meshagent/agents/version.py +0 -1
  18. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/LICENSE +0 -0
  19. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/MANIFEST.in +0 -0
  20. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/README.md +0 -0
  21. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/__init__.py +0 -0
  22. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/adapter.py +0 -0
  23. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/context.py +0 -0
  24. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/development.py +0 -0
  25. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/prompt.py +0 -0
  26. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/thread_schema.py +0 -0
  27. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent/agents/utils.py +0 -0
  28. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent_agents.egg-info/SOURCES.txt +0 -0
  29. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent_agents.egg-info/dependency_links.txt +0 -0
  30. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/meshagent_agents.egg-info/top_level.txt +0 -0
  31. {meshagent_agents-0.0.10 → meshagent_agents-0.0.14}/setup.cfg +0 -0
@@ -1,3 +1,9 @@
1
+ ## [0.0.14]
2
+ - Stability
3
+
4
+ ## [0.0.11]
5
+ - Stability
6
+
1
7
  ## [0.0.10]
2
8
  - Stability
3
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-agents
3
- Version: 0.0.10
3
+ Version: 0.0.14
4
4
  Summary: Agent Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://meshagent.com
@@ -12,9 +12,9 @@ License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10.1
13
13
  Requires-Dist: pytest~=8.3.5
14
14
  Requires-Dist: pytest-asyncio~=0.26.0
15
- Requires-Dist: meshagent-api~=0.0.10
16
- Requires-Dist: meshagent-tools~=0.0.10
17
- Requires-Dist: meshagent-openai~=0.0.10
15
+ Requires-Dist: meshagent-api~=0.0.14
16
+ Requires-Dist: meshagent-tools~=0.0.14
17
+ Requires-Dist: meshagent-openai~=0.0.14
18
18
  Requires-Dist: pydantic~=2.11.1
19
19
  Requires-Dist: pydantic-ai~=0.0.48
20
20
  Requires-Dist: chonkie~=0.5.1
@@ -17,7 +17,7 @@ import asyncio
17
17
  from typing import Optional, Dict, Callable, Coroutine
18
18
 
19
19
  logger = logging.getLogger("agent")
20
- logger.setLevel(logging.INFO)
20
+
21
21
 
22
22
  class AgentException(RoomException):
23
23
  pass
@@ -13,9 +13,7 @@ import datetime
13
13
  import json
14
14
  from openai.types.responses import ResponseStreamEvent
15
15
 
16
- logging.basicConfig()
17
16
  logger = logging.getLogger("chat")
18
- logger.setLevel(logging.INFO)
19
17
 
20
18
 
21
19
  # todo: thread should stop when participant stops?
@@ -166,7 +164,6 @@ class ChatBot(SingleRoomAgent):
166
164
  return await self.room.sync.open(path=path)
167
165
 
168
166
  async def close_thread(self, *, path: str):
169
-
170
167
  return await self.room.sync.close(path=path)
171
168
 
172
169
 
@@ -362,14 +359,16 @@ class ChatBot(SingleRoomAgent):
362
359
 
363
360
 
364
361
  finally:
365
-
366
- self.room.developer.log_nowait(type="chatbot.thread.ended", data={ "path" : path })
367
-
362
+
363
+
368
364
  llm_messages.close()
369
365
 
370
- if thread != None:
371
- await self.close_thread(path=path)
372
-
366
+ if self.room != None:
367
+ self.room.developer.log_nowait(type="chatbot.thread.ended", data={ "path" : path })
368
+
369
+ if thread != None:
370
+ await self.close_thread(path=path)
371
+
373
372
 
374
373
  def _get_message_channel(self, participant_id: str) -> Chan[RoomMessage]:
375
374
  if participant_id not in self._message_channels:
@@ -13,7 +13,7 @@ from typing import Callable, Optional
13
13
  from .agent import TaskRunner
14
14
 
15
15
  logger = logging.getLogger("hosting")
16
- logger.setLevel(logging.INFO)
16
+
17
17
 
18
18
 
19
19
  class RemoteTaskRunnerServer[T:TaskRunner](WebhookServer):
@@ -41,7 +41,7 @@ def _async_debounce(wait):
41
41
  return decorator
42
42
 
43
43
  logger = logging.getLogger("indexer")
44
- logger.setLevel(logging.INFO)
44
+
45
45
 
46
46
  class Chunk:
47
47
  def __init__(self, *, text: str, start: int, end: int):
@@ -11,7 +11,7 @@ from meshagent.api.websocket_protocol import WebSocketClientProtocol
11
11
  from typing import Optional
12
12
 
13
13
  logger = logging.getLogger(__name__)
14
- logger.setLevel(logging.INFO)
14
+
15
15
 
16
16
  from meshagent.agents.agent import TaskRunner, AgentChatContext, AgentCallContext
17
17
 
@@ -122,9 +122,9 @@ def reasoning_schema(*, description: str, elements: Optional[list[ElementType]]
122
122
 
123
123
  from meshagent.api.schema_util import prompt_schema
124
124
  import logging
125
- logging.basicConfig()
125
+
126
126
  logger = logging.getLogger("planning_agent")
127
- logger.setLevel(logging.INFO)
127
+
128
128
 
129
129
 
130
130
  class PlanningWriter(Writer):
@@ -18,7 +18,7 @@ from typing import Sequence
18
18
  import pydantic_ai
19
19
 
20
20
  logger = logging.getLogger("pydantic_agent")
21
- logger.setLevel(logging.INFO)
21
+
22
22
 
23
23
 
24
24
  def get_pydantic_ai_tool(*, room: RoomClient, tool: Tool, response_adapter: ToolResponseAdapter) -> pydantic_ai.tools.Tool:
@@ -8,9 +8,9 @@ from typing import Optional
8
8
  from meshagent.api import Requirement
9
9
 
10
10
  import logging
11
- logging.basicConfig()
11
+
12
12
  logger = logging.getLogger("planning_agent")
13
- logger.setLevel(logging.INFO)
13
+
14
14
 
15
15
 
16
16
  class SingleShotWriter(Writer):
@@ -0,0 +1 @@
1
+ __version__ = "0.0.14"
@@ -9,9 +9,8 @@ import json
9
9
 
10
10
  import logging
11
11
 
12
- logging.basicConfig()
13
12
  logger = logging.getLogger("chat")
14
- logger.setLevel(logging.INFO)
13
+
15
14
 
16
15
 
17
16
  # todo: thread should stop when participant stops?
@@ -8,9 +8,8 @@ import asyncio
8
8
  import logging
9
9
  from meshagent.agents.hosting import TaskRunner
10
10
 
11
- logging.basicConfig()
12
11
  logger = logging.getLogger("writer_agent")
13
- logger.setLevel(logging.INFO)
12
+
14
13
 
15
14
  class WriterContext:
16
15
  def __init__(self, room: RoomClient, document: Document, call_context: AgentCallContext, path: str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-agents
3
- Version: 0.0.10
3
+ Version: 0.0.14
4
4
  Summary: Agent Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://meshagent.com
@@ -12,9 +12,9 @@ License-File: LICENSE
12
12
  Requires-Dist: pyjwt~=2.10.1
13
13
  Requires-Dist: pytest~=8.3.5
14
14
  Requires-Dist: pytest-asyncio~=0.26.0
15
- Requires-Dist: meshagent-api~=0.0.10
16
- Requires-Dist: meshagent-tools~=0.0.10
17
- Requires-Dist: meshagent-openai~=0.0.10
15
+ Requires-Dist: meshagent-api~=0.0.14
16
+ Requires-Dist: meshagent-tools~=0.0.14
17
+ Requires-Dist: meshagent-openai~=0.0.14
18
18
  Requires-Dist: pydantic~=2.11.1
19
19
  Requires-Dist: pydantic-ai~=0.0.48
20
20
  Requires-Dist: chonkie~=0.5.1
@@ -1,9 +1,9 @@
1
1
  pyjwt~=2.10.1
2
2
  pytest~=8.3.5
3
3
  pytest-asyncio~=0.26.0
4
- meshagent-api~=0.0.10
5
- meshagent-tools~=0.0.10
6
- meshagent-openai~=0.0.10
4
+ meshagent-api~=0.0.14
5
+ meshagent-tools~=0.0.14
6
+ meshagent-openai~=0.0.14
7
7
  pydantic~=2.11.1
8
8
  pydantic-ai~=0.0.48
9
9
  chonkie~=0.5.1
@@ -17,9 +17,9 @@ dependencies = [
17
17
  "pyjwt~=2.10.1",
18
18
  "pytest~=8.3.5",
19
19
  "pytest-asyncio~=0.26.0",
20
- "meshagent-api~=0.0.10",
21
- "meshagent-tools~=0.0.10",
22
- "meshagent-openai~=0.0.10",
20
+ "meshagent-api~=0.0.14",
21
+ "meshagent-tools~=0.0.14",
22
+ "meshagent-openai~=0.0.14",
23
23
  "pydantic~=2.11.1",
24
24
  "pydantic-ai~=0.0.48",
25
25
  "chonkie~=0.5.1",
@@ -1 +0,0 @@
1
- __version__ = "0.0.10"