solana-agent 23.0.1__tar.gz → 23.0.2__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.1 → solana_agent-23.0.2}/PKG-INFO +24 -4
  2. {solana_agent-23.0.1 → solana_agent-23.0.2}/README.md +23 -3
  3. {solana_agent-23.0.1 → solana_agent-23.0.2}/pyproject.toml +1 -1
  4. {solana_agent-23.0.1 → solana_agent-23.0.2}/LICENSE +0 -0
  5. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/__init__.py +0 -0
  6. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/adapters/llm_adapter.py +0 -0
  8. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/adapters/mongodb_adapter.py +0 -0
  9. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/client/__init__.py +0 -0
  10. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/client/solana_agent.py +0 -0
  11. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/domains/__init__.py +0 -0
  12. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/domains/agent.py +0 -0
  13. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/domains/routing.py +0 -0
  14. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/factories/__init__.py +0 -0
  15. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/factories/agent_factory.py +0 -0
  16. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-23.0.1 → solana_agent-23.0.2}/solana_agent/services/query.py +0 -0
  35. {solana_agent-23.0.1 → solana_agent-23.0.2}/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.1
3
+ Version: 23.0.2
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -89,6 +89,10 @@ An agent can have multiple tools and will choose the best one to answer the user
89
89
 
90
90
  Routing is determined by optimal domain expertise of the agent for the user query.
91
91
 
92
+ When the agent uses a tool it feeds the tool output back into the agent to generate the final response.
93
+
94
+ This is important as tools generally output unstructured and unformatted data that the agent needs to prepare for the user.
95
+
92
96
  Keep this in mind while designing your agentic systems using Solana Agent.
93
97
 
94
98
  ```ascii
@@ -153,6 +157,10 @@ async for response in solana_agent.process("user123", "What are the latest AI de
153
157
  print(response, end="")
154
158
  ```
155
159
 
160
+ OpenAI API calls with no tool call = 1 (text)
161
+
162
+ OpenAI API calls with tool call = 2 (text, text)
163
+
156
164
  ### Audio/Audio Streaming
157
165
 
158
166
  ```python
@@ -184,6 +192,10 @@ async for response in solana_agent.process("user123", audio_content, output_form
184
192
  print(response, end="")
185
193
  ```
186
194
 
195
+ OpenAI API calls with no tool call = 3 (audio transcribe, text, TTS)
196
+
197
+ OpenAI API calls with tool call = 4 (audio transcribe, text, text, TTS)
198
+
187
199
  ### Text/Audio Streaming
188
200
 
189
201
  ```python
@@ -213,6 +225,10 @@ async for response in solana_agent.process("user123", "What is the latest news o
213
225
  print(response, end="")
214
226
  ```
215
227
 
228
+ OpenAI API calls with no tool call = 2 (text, TTS)
229
+
230
+ OpenAI API calls with tool call = 3 (text, text, TTS)
231
+
216
232
  ### Audio/Text Streaming
217
233
 
218
234
  ```python
@@ -244,6 +260,10 @@ async for response in solana_agent.process("user123", audio_content, audio_input
244
260
  print(response, end="")
245
261
  ```
246
262
 
263
+ OpenAI API calls with no tool call = 2 (audio transcribe, text)
264
+
265
+ OpenAI API calls with tool call = 3 (audio transcribe, text, text)
266
+
247
267
  ## Optional Feature Configs
248
268
 
249
269
  ### Business Alignment
@@ -289,9 +309,9 @@ config = {
289
309
 
290
310
  This mode is great for text output where the default response from OpenAI is enough.
291
311
 
292
- However, it is also found to sometimes not not call tools when the tool should be called.
312
+ However, it is also found to sometimes to not call tools when the tool should be called.
293
313
 
294
- It is faster than calling `search_internet` from `sakit` and saves at least 2 API calls.
314
+ It is faster than calling `search_internet` from `sakit` by saving 2 API calls.
295
315
 
296
316
  The default mode is disabled due to the issue of not calling tools properly and is not suitable for audio output.
297
317
 
@@ -547,7 +567,7 @@ If you have a question, feedback, or feature request - please open a GitHub disc
547
567
 
548
568
  If you find a bug - please open a GitHub issue.
549
569
 
550
- We are currently not accepting pull requests at the moment.
570
+ We are currently accepting PRs if approved in discussions. Make sure all tests pass and the README & docs are updated.
551
571
 
552
572
  To run the documentation site locally run `make livehtml` in the root directory.
553
573
 
@@ -65,6 +65,10 @@ An agent can have multiple tools and will choose the best one to answer the user
65
65
 
66
66
  Routing is determined by optimal domain expertise of the agent for the user query.
67
67
 
68
+ When the agent uses a tool it feeds the tool output back into the agent to generate the final response.
69
+
70
+ This is important as tools generally output unstructured and unformatted data that the agent needs to prepare for the user.
71
+
68
72
  Keep this in mind while designing your agentic systems using Solana Agent.
69
73
 
70
74
  ```ascii
@@ -129,6 +133,10 @@ async for response in solana_agent.process("user123", "What are the latest AI de
129
133
  print(response, end="")
130
134
  ```
131
135
 
136
+ OpenAI API calls with no tool call = 1 (text)
137
+
138
+ OpenAI API calls with tool call = 2 (text, text)
139
+
132
140
  ### Audio/Audio Streaming
133
141
 
134
142
  ```python
@@ -160,6 +168,10 @@ async for response in solana_agent.process("user123", audio_content, output_form
160
168
  print(response, end="")
161
169
  ```
162
170
 
171
+ OpenAI API calls with no tool call = 3 (audio transcribe, text, TTS)
172
+
173
+ OpenAI API calls with tool call = 4 (audio transcribe, text, text, TTS)
174
+
163
175
  ### Text/Audio Streaming
164
176
 
165
177
  ```python
@@ -189,6 +201,10 @@ async for response in solana_agent.process("user123", "What is the latest news o
189
201
  print(response, end="")
190
202
  ```
191
203
 
204
+ OpenAI API calls with no tool call = 2 (text, TTS)
205
+
206
+ OpenAI API calls with tool call = 3 (text, text, TTS)
207
+
192
208
  ### Audio/Text Streaming
193
209
 
194
210
  ```python
@@ -220,6 +236,10 @@ async for response in solana_agent.process("user123", audio_content, audio_input
220
236
  print(response, end="")
221
237
  ```
222
238
 
239
+ OpenAI API calls with no tool call = 2 (audio transcribe, text)
240
+
241
+ OpenAI API calls with tool call = 3 (audio transcribe, text, text)
242
+
223
243
  ## Optional Feature Configs
224
244
 
225
245
  ### Business Alignment
@@ -265,9 +285,9 @@ config = {
265
285
 
266
286
  This mode is great for text output where the default response from OpenAI is enough.
267
287
 
268
- However, it is also found to sometimes not not call tools when the tool should be called.
288
+ However, it is also found to sometimes to not call tools when the tool should be called.
269
289
 
270
- It is faster than calling `search_internet` from `sakit` and saves at least 2 API calls.
290
+ It is faster than calling `search_internet` from `sakit` by saving 2 API calls.
271
291
 
272
292
  The default mode is disabled due to the issue of not calling tools properly and is not suitable for audio output.
273
293
 
@@ -523,7 +543,7 @@ If you have a question, feedback, or feature request - please open a GitHub disc
523
543
 
524
544
  If you find a bug - please open a GitHub issue.
525
545
 
526
- We are currently not accepting pull requests at the moment.
546
+ We are currently accepting PRs if approved in discussions. Make sure all tests pass and the README & docs are updated.
527
547
 
528
548
  To run the documentation site locally run `make livehtml` in the root directory.
529
549
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "23.0.1"
3
+ version = "23.0.2"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes