solana-agent 17.0.0__tar.gz → 17.0.1__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-17.0.0 → solana_agent-17.0.1}/PKG-INFO +3 -3
- {solana_agent-17.0.0 → solana_agent-17.0.1}/README.md +2 -2
- {solana_agent-17.0.0 → solana_agent-17.0.1}/pyproject.toml +1 -1
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/adapters/llm_adapter.py +1 -2
- {solana_agent-17.0.0 → solana_agent-17.0.1}/LICENSE +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/client/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/domains/agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/domains/routing.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/repositories/agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/repositories/agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/services/__init__.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/services/agent.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/services/query.py +0 -0
- {solana_agent-17.0.0 → solana_agent-17.0.1}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: solana-agent
|
3
|
-
Version: 17.0.
|
3
|
+
Version: 17.0.1
|
4
4
|
Summary: The Future of Work
|
5
5
|
License: MIT
|
6
6
|
Keywords: ai,openai,ai agents,agi
|
@@ -109,11 +109,11 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
109
109
|
print(response, end="")
|
110
110
|
```
|
111
111
|
|
112
|
-
##
|
112
|
+
## Models Used
|
113
113
|
* The model used for AI Agents is `gpt-4o-mini-search-preview`
|
114
114
|
* The model used for internal structured outputs is `gpt-4o-mini`
|
115
115
|
* The model used for audio_transcription is `gpt-4o-mini-transcribe`
|
116
|
-
* The model used for tts is `
|
116
|
+
* The model used for tts is `tts-1`
|
117
117
|
|
118
118
|
## Solana Agent Kit
|
119
119
|
|
@@ -86,11 +86,11 @@ async for response in solana_agent.process("user123", "What are the latest AI de
|
|
86
86
|
print(response, end="")
|
87
87
|
```
|
88
88
|
|
89
|
-
##
|
89
|
+
## Models Used
|
90
90
|
* The model used for AI Agents is `gpt-4o-mini-search-preview`
|
91
91
|
* The model used for internal structured outputs is `gpt-4o-mini`
|
92
92
|
* The model used for audio_transcription is `gpt-4o-mini-transcribe`
|
93
|
-
* The model used for tts is `
|
93
|
+
* The model used for tts is `tts-1`
|
94
94
|
|
95
95
|
## Solana Agent Kit
|
96
96
|
|
@@ -21,7 +21,7 @@ class OpenAIAdapter(LLMProvider):
|
|
21
21
|
self.parse_model = "gpt-4o-mini"
|
22
22
|
self.search_model = "gpt-4o-mini-search-preview"
|
23
23
|
self.transcription_model = "gpt-4o-mini-transcribe"
|
24
|
-
self.tts_model = "
|
24
|
+
self.tts_model = "tts-1"
|
25
25
|
|
26
26
|
async def tts(
|
27
27
|
self,
|
@@ -48,7 +48,6 @@ class OpenAIAdapter(LLMProvider):
|
|
48
48
|
model=self.tts_model,
|
49
49
|
voice=voice,
|
50
50
|
input=text,
|
51
|
-
instructions=instructions,
|
52
51
|
response_format=response_format
|
53
52
|
)
|
54
53
|
|
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-17.0.0 → solana_agent-17.0.1}/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
|
File without changes
|
File without changes
|