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.
- {solana_agent-23.0.6 → solana_agent-23.0.7}/PKG-INFO +5 -5
- {solana_agent-23.0.6 → solana_agent-23.0.7}/README.md +4 -4
- {solana_agent-23.0.6 → solana_agent-23.0.7}/pyproject.toml +1 -1
- {solana_agent-23.0.6 → solana_agent-23.0.7}/LICENSE +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/llm_adapter.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/client/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/agent.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/domains/routing.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/__init__.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/agent.py +0 -0
- {solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/services/query.py +0 -0
- {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.
|
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
|
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
|
-
|
360
|
+
It is not suitable for audio as the OpenAI search results contain links and markdown.
|
361
361
|
|
362
|
-
|
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
|
-
|
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
|
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
|
-
|
336
|
+
It is not suitable for audio as the OpenAI search results contain links and markdown.
|
337
337
|
|
338
|
-
|
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
|
-
|
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):
|
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
|
{solana_agent-23.0.6 → solana_agent-23.0.7}/solana_agent/interfaces/providers/data_storage.py
RENAMED
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
|