solana-agent 22.0.9__tar.gz → 22.0.11__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-22.0.9 → solana_agent-22.0.11}/PKG-INFO +7 -7
  2. {solana_agent-22.0.9 → solana_agent-22.0.11}/README.md +6 -6
  3. {solana_agent-22.0.9 → solana_agent-22.0.11}/pyproject.toml +1 -1
  4. {solana_agent-22.0.9 → solana_agent-22.0.11}/LICENSE +0 -0
  5. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/__init__.py +0 -0
  6. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/adapters/__init__.py +0 -0
  7. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/adapters/llm_adapter.py +0 -0
  8. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/adapters/mongodb_adapter.py +0 -0
  9. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/client/__init__.py +0 -0
  10. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/client/solana_agent.py +0 -0
  11. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/domains/__init__.py +0 -0
  12. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/domains/agent.py +0 -0
  13. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/domains/routing.py +0 -0
  14. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/factories/__init__.py +0 -0
  15. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/factories/agent_factory.py +0 -0
  16. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/__init__.py +0 -0
  17. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/client/client.py +0 -0
  18. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/services/agent.py +0 -0
  23. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/services/query.py +0 -0
  24. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/interfaces/services/routing.py +0 -0
  25. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/plugins/__init__.py +0 -0
  26. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/plugins/manager.py +0 -0
  27. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/plugins/registry.py +0 -0
  28. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/plugins/tools/__init__.py +0 -0
  29. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/plugins/tools/auto_tool.py +0 -0
  30. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/repositories/__init__.py +0 -0
  31. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/repositories/memory.py +0 -0
  32. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/services/__init__.py +0 -0
  33. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/services/agent.py +0 -0
  34. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/services/query.py +0 -0
  35. {solana_agent-22.0.9 → solana_agent-22.0.11}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 22.0.9
3
+ Version: 22.0.11
4
4
  Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -60,7 +60,7 @@ Build your AI business in three lines of code!
60
60
  * Seamless text and audio streaming with real-time multi-modal processing
61
61
  * Configurable audio voice characteristics via prompting
62
62
  * Persistent memory that preserves context across all agent interactions
63
- * Quick built-in Internet search to answer your queries
63
+ * Quick built-in Internet search to answer users' queries
64
64
  * Streamlined message history for all agent interactions
65
65
  * Intelligent query routing to agents with optimal domain expertise or your own custom routing
66
66
  * Unified value system ensuring brand-aligned agent responses
@@ -272,14 +272,14 @@ async for response in solana_agent.process("user123", audio_content, output_form
272
272
 
273
273
  ## Tools
274
274
 
275
- Tools can be used from plugins like Solana Agent Kit (sakit) or via custom inline tools. Tools available via plugins integrate automatically with Solana Agent.
275
+ Tools can be used from plugins like Solana Agent Kit (sakit) or via inline tools. Tools available via plugins integrate automatically with Solana Agent.
276
276
 
277
277
  * Agents can only call one tool per response
278
278
  * Agents choose the best tool for the job
279
279
  * Tools do not use OpenAI function calling
280
280
  * Tools are async functions
281
281
 
282
- ### Tool Example
282
+ ### Plugin Tool Example
283
283
 
284
284
  `pip install sakit`
285
285
 
@@ -316,7 +316,7 @@ async for response in solana_agent.process("user123", "What are the latest AI de
316
316
  print(response, end="")
317
317
  ```
318
318
 
319
- ### Custom Inline Tool Example
319
+ ### Inline Tool Example
320
320
 
321
321
  ```python
322
322
  from solana_agent import SolanaAgent
@@ -398,11 +398,11 @@ async for response in solana_agent.process("user123", "What are the latest AI de
398
398
 
399
399
  ## Agent Training
400
400
 
401
- Many use-cases for Solana Agent require training your agents on your company data.
401
+ Many use cases for Solana Agent require training your agents on your company data.
402
402
 
403
403
  This can be accomplished via runtime prompt injection. Integrations that work well with this method are vector stores like Pinecone and FAQs.
404
404
 
405
- This knowledge applies to all your AI agents.
405
+ This knowledge is accessible to all your AI agents.
406
406
 
407
407
  ```python
408
408
  from solana_agent import SolanaAgent
@@ -36,7 +36,7 @@ Build your AI business in three lines of code!
36
36
  * Seamless text and audio streaming with real-time multi-modal processing
37
37
  * Configurable audio voice characteristics via prompting
38
38
  * Persistent memory that preserves context across all agent interactions
39
- * Quick built-in Internet search to answer your queries
39
+ * Quick built-in Internet search to answer users' queries
40
40
  * Streamlined message history for all agent interactions
41
41
  * Intelligent query routing to agents with optimal domain expertise or your own custom routing
42
42
  * Unified value system ensuring brand-aligned agent responses
@@ -248,14 +248,14 @@ async for response in solana_agent.process("user123", audio_content, output_form
248
248
 
249
249
  ## Tools
250
250
 
251
- Tools can be used from plugins like Solana Agent Kit (sakit) or via custom inline tools. Tools available via plugins integrate automatically with Solana Agent.
251
+ Tools can be used from plugins like Solana Agent Kit (sakit) or via inline tools. Tools available via plugins integrate automatically with Solana Agent.
252
252
 
253
253
  * Agents can only call one tool per response
254
254
  * Agents choose the best tool for the job
255
255
  * Tools do not use OpenAI function calling
256
256
  * Tools are async functions
257
257
 
258
- ### Tool Example
258
+ ### Plugin Tool Example
259
259
 
260
260
  `pip install sakit`
261
261
 
@@ -292,7 +292,7 @@ async for response in solana_agent.process("user123", "What are the latest AI de
292
292
  print(response, end="")
293
293
  ```
294
294
 
295
- ### Custom Inline Tool Example
295
+ ### Inline Tool Example
296
296
 
297
297
  ```python
298
298
  from solana_agent import SolanaAgent
@@ -374,11 +374,11 @@ async for response in solana_agent.process("user123", "What are the latest AI de
374
374
 
375
375
  ## Agent Training
376
376
 
377
- Many use-cases for Solana Agent require training your agents on your company data.
377
+ Many use cases for Solana Agent require training your agents on your company data.
378
378
 
379
379
  This can be accomplished via runtime prompt injection. Integrations that work well with this method are vector stores like Pinecone and FAQs.
380
380
 
381
- This knowledge applies to all your AI agents.
381
+ This knowledge is accessible to all your AI agents.
382
382
 
383
383
  ```python
384
384
  from solana_agent import SolanaAgent
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "22.0.9"
3
+ version = "22.0.11"
4
4
  description = "Agentic IQ"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
File without changes