solana-agent 28.3.1__py3-none-any.whl → 28.3.3__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 28.3.1
3
+ Version: 28.3.3
4
4
  Summary: AI Agents for Solana
5
5
  License: MIT
6
6
  Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
@@ -14,20 +14,20 @@ Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
- Requires-Dist: instructor (>=1.7.9,<2.0.0)
18
- Requires-Dist: llama-index-core (>=0.12.32,<0.13.0)
19
- Requires-Dist: llama-index-embeddings-openai (>=0.3.1,<0.4.0)
20
- Requires-Dist: logfire (>=3.14.0,<4.0.0)
21
- Requires-Dist: openai (>=1.75.0,<2.0.0)
22
- Requires-Dist: pillow (>=11.2.1,<12.0.0)
23
- Requires-Dist: pinecone (>=6.0.2,<7.0.0)
17
+ Requires-Dist: instructor (==1.7.9)
18
+ Requires-Dist: llama-index-core (==0.12.32)
19
+ Requires-Dist: llama-index-embeddings-openai (==0.3.1)
20
+ Requires-Dist: logfire (==3.14.1)
21
+ Requires-Dist: openai (==1.76.2)
22
+ Requires-Dist: pillow (==11.2.1)
23
+ Requires-Dist: pinecone (==6.0.2)
24
24
  Requires-Dist: pydantic (>=2)
25
- Requires-Dist: pymongo (>=4.12.0,<5.0.0)
26
- Requires-Dist: pypdf (>=5.4.0,<6.0.0)
27
- Requires-Dist: rich (>=13)
28
- Requires-Dist: scrubadub (>=2.0.1,<3.0.0)
29
- Requires-Dist: typer (>=0.15.2,<0.16.0)
30
- Requires-Dist: zep-cloud (>=2.10.2,<3.0.0)
25
+ Requires-Dist: pymongo (==4.12.1)
26
+ Requires-Dist: pypdf (==5.4.0)
27
+ Requires-Dist: rich (>=13,<14.0)
28
+ Requires-Dist: scrubadub (==2.0.1)
29
+ Requires-Dist: typer (==0.15.3)
30
+ Requires-Dist: zep-cloud (==2.11.0)
31
31
  Project-URL: Documentation, https://docs.solana-agent.com
32
32
  Project-URL: Homepage, https://solana-agent.com
33
33
  Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
@@ -68,6 +68,7 @@ Build your AI agents in three lines of code!
68
68
  * Knowledge Base
69
69
  * MCP Support
70
70
  * Guardrails
71
+ * Image Generation
71
72
  * Pydantic Logfire
72
73
  * Tested & Secure
73
74
  * Built in Python
@@ -92,6 +93,7 @@ Build your AI agents in three lines of code!
92
93
  * Assigned tools are utilized by agents automatically and effectively
93
94
  * Integrated Knowledge Base with semantic search and automatic PDF chunking
94
95
  * Input and output guardrails for content filtering, safety, and data sanitization
96
+ * Generate custom images based on text prompts with storage on S3 compatible services
95
97
  * Automatic sequential tool workflows allowing agents to chain multiple tools
96
98
  * Combine with event-driven systems to create autonomous agents
97
99
 
@@ -112,9 +114,11 @@ Build your AI agents in three lines of code!
112
114
 
113
115
  * [gpt-4.1](https://platform.openai.com/docs/models/gpt-4.1) (agent)
114
116
  * [gpt-4.1-nano](https://platform.openai.com/docs/models/gpt-4.1-nano) (router)
115
- * [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) or [text-embedding-3-small](https://platform.openai.com/docs/models/text-embedding-3-small) (embedding)
117
+ * [text-embedding-3-large](https://platform.openai.com/docs/models/text-embedding-3-large) (embedding)
116
118
  * [tts-1](https://platform.openai.com/docs/models/tts-1) (audio TTS)
117
119
  * [gpt-4o-mini-transcribe](https://platform.openai.com/docs/models/gpt-4o-mini-transcribe) (audio transcription)
120
+ * [gpt-image-1](https://platform.openai.com/docs/models/gpt-image-1) (image generation)
121
+ * [gpt-4o-mini-search-preview](https://platform.openai.com/docs/models/gpt-4o-mini-search-preview) (Internet search)
118
122
 
119
123
  ## Installation
120
124
 
@@ -709,6 +713,45 @@ async for response in solana_agent.process("user123", "Send an email to bob@bob.
709
713
  print(response, end="")
710
714
  ```
711
715
 
716
+ ### Image Generation
717
+
718
+ Generate images using OpenAI's `gpt-image-1` and upload them to S3-compatible storage.
719
+
720
+ `pip install sakit`
721
+
722
+ ```python
723
+ from solana_agent import SolanaAgent
724
+
725
+ config = {
726
+ "openai": {
727
+ "api_key": "your-openai-api-key" # Required: Your OpenAI API key
728
+ },
729
+ "tools": {
730
+ "image_gen": {
731
+ "s3_endpoint_url": "https://your-s3-endpoint.com", # Required: e.g., https://nyc3.digitaloceanspaces.com
732
+ "s3_access_key_id": "YOUR_S3_ACCESS_KEY", # Required: Your S3 access key ID
733
+ "s3_secret_access_key": "YOUR_S3_SECRET_KEY", # Required: Your S3 secret access key
734
+ "s3_bucket_name": "your-bucket-name", # Required: The name of your S3 bucket
735
+ "s3_region_name": "your-region", # Optional: e.g., "nyc3", needed by some providers
736
+ "s3_public_url_base": "https://your-cdn-or-bucket-url.com/", # Optional: Custom base URL for public links (include trailing slash). If omitted, a standard URL is constructed.
737
+ }
738
+ },
739
+ "agents": [
740
+ {
741
+ "name": "image_creator",
742
+ "instructions": "You are a creative assistant that generates images based on user descriptions. Use the image_gen tool to create and store the image.",
743
+ "specialization": "Image generation and storage",
744
+ "tools": ["image_gen"], # Enable the tool for this agent
745
+ }
746
+ ]
747
+ }
748
+
749
+ solana_agent = SolanaAgent(config=config)
750
+
751
+ async for response in solana_agent.process("user123", "Generate an image of a smiling unicorn!"):
752
+ print(response, end="")
753
+ ```
754
+
712
755
  ### Inline Tool Example
713
756
 
714
757
  ```python
@@ -36,8 +36,8 @@ solana_agent/services/agent.py,sha256=QoeQq_OEWyLdBS0FPa-lXm5qiE0RnRfrCKiFTfOSGE
36
36
  solana_agent/services/knowledge_base.py,sha256=D4QNGC3Z8E7iX-CEGpRks0lW4wWJt-WorO3J8mu6ayU,35318
37
37
  solana_agent/services/query.py,sha256=ENUfs4WSTpODMRXppDVW-Y3li9jYn8pOfQIHIPerUdQ,18498
38
38
  solana_agent/services/routing.py,sha256=C5Ku4t9TqvY7S8wlUPMTC04HCrT4Ib3E8Q8yX0lVU_s,7137
39
- solana_agent-28.3.1.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
40
- solana_agent-28.3.1.dist-info/METADATA,sha256=ozjvInRPLnlHiOW-n0WFzf24k4xzGV4fvOfh5RItkg8,30958
41
- solana_agent-28.3.1.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
42
- solana_agent-28.3.1.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
43
- solana_agent-28.3.1.dist-info/RECORD,,
39
+ solana_agent-28.3.3.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
40
+ solana_agent-28.3.3.dist-info/METADATA,sha256=HzzognAEpUBFK01ELhNA4BsLiK2buVxMFofgIGdHTdc,32756
41
+ solana_agent-28.3.3.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
42
+ solana_agent-28.3.3.dist-info/entry_points.txt,sha256=-AuT_mfqk8dlZ0pHuAjx1ouAWpTRjpqvEUa6YV3lmc0,53
43
+ solana_agent-28.3.3.dist-info/RECORD,,