solana-agent 23.0.6__tar.gz → 23.0.7__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.
Files changed (35) hide show
  1. {solana_agent-23.0.6 → solana_agent-23.0.7}/PKG-INFO +5 -5
  2. {solana_agent-23.0.6 → solana_agent-23.0.7}/README.md +4 -4
  3. {solana_agent-23.0.6 → solana_agent-23.0.7}/pyproject.toml +1 -1
  4. {solana_agent-23.0.6 → solana_agent-23.0.7}/LICENSE +0 -0
  5. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/__init__.py +0 -0
  6. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/llm_adapter.py +0 -0
  8. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/mongodb_adapter.py +0 -0
  9. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/client/__init__.py +0 -0
  10. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/client/solana_agent.py +0 -0
  11. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/__init__.py +0 -0
  12. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/agent.py +0 -0
  13. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/routing.py +0 -0
  14. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/factories/__init__.py +0 -0
  15. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/factories/agent_factory.py +0 -0
  16. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/query.py +0 -0
  35. {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 23.0.6
3
+ Version: 23.0.7
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -98,7 +98,7 @@ An agent can have multiple tools and will choose the best one to answer the user
98
98
 
99
99
  Routing is determined by optimal domain expertise of the agent for the user query.
100
100
 
101
- When the agent uses a tool it feeds the tool output back into the agent to generate the final response.
101
+ When the agent uses a tool it feeds the tool output back to itself to generate the final response.
102
102
 
103
103
  This is important as tools generally output unstructured and unformatted data that the agent needs to prepare for the user.
104
104
 
@@ -357,11 +357,11 @@ API Calls:
357
357
 
358
358
  This mode is great for text output where the default response from OpenAI is enough.
359
359
 
360
- However, it is also found to sometimes to not call tools when the tool should be called.
360
+ It is not suitable for audio as the OpenAI search results contain links and markdown.
361
361
 
362
- It is faster than calling `search_internet` from `sakit` by saving 2 API calls.
362
+ Also it may not call tools when they should be called as it thinks the search results answer the user query.
363
363
 
364
- The default mode is disabled due to the issue of not calling tools properly and is not suitable for audio output.
364
+ It is much faster than calling `search_internet` from `sakit` as it saves 2 API calls.
365
365
 
366
366
  ```python
367
367
  async for response in solana_agent.process("user123", "What is the latest news on Canada?", internet_search=True):
@@ -74,7 +74,7 @@ An agent can have multiple tools and will choose the best one to answer the user
74
74
 
75
75
  Routing is determined by optimal domain expertise of the agent for the user query.
76
76
 
77
- When the agent uses a tool it feeds the tool output back into the agent to generate the final response.
77
+ When the agent uses a tool it feeds the tool output back to itself to generate the final response.
78
78
 
79
79
  This is important as tools generally output unstructured and unformatted data that the agent needs to prepare for the user.
80
80
 
@@ -333,11 +333,11 @@ API Calls:
333
333
 
334
334
  This mode is great for text output where the default response from OpenAI is enough.
335
335
 
336
- However, it is also found to sometimes to not call tools when the tool should be called.
336
+ It is not suitable for audio as the OpenAI search results contain links and markdown.
337
337
 
338
- It is faster than calling `search_internet` from `sakit` by saving 2 API calls.
338
+ Also it may not call tools when they should be called as it thinks the search results answer the user query.
339
339
 
340
- The default mode is disabled due to the issue of not calling tools properly and is not suitable for audio output.
340
+ It is much faster than calling `search_internet` from `sakit` as it saves 2 API calls.
341
341
 
342
342
  ```python
343
343
  async for response in solana_agent.process("user123", "What is the latest news on Canada?", internet_search=True):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "23.0.6"
3
+ version = "23.0.7"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes