solana-agent 29.1.1__tar.gz → 29.1.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.
- {solana_agent-29.1.1 → solana_agent-29.1.2}/PKG-INFO +4 -5
- {solana_agent-29.1.1 → solana_agent-29.1.2}/README.md +3 -4
- {solana_agent-29.1.1 → solana_agent-29.1.2}/pyproject.toml +1 -1
- {solana_agent-29.1.1 → solana_agent-29.1.2}/LICENSE +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/adapters/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/adapters/mongodb_adapter.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/adapters/openai_adapter.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/adapters/pinecone_adapter.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/cli.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/client/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/client/solana_agent.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/domains/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/domains/agent.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/domains/routing.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/factories/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/factories/agent_factory.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/guardrails/pii.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/client/client.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/guardrails/guardrails.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/plugins/plugins.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/data_storage.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/llm.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/memory.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/vector_storage.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/services/agent.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/services/knowledge_base.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/services/query.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/services/routing.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/plugins/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/plugins/manager.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/plugins/registry.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/plugins/tools/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/plugins/tools/auto_tool.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/repositories/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/repositories/memory.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/services/__init__.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/services/agent.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/services/knowledge_base.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/services/query.py +0 -0
- {solana_agent-29.1.1 → solana_agent-29.1.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: 29.1.
|
3
|
+
Version: 29.1.2
|
4
4
|
Summary: AI Agents for Solana
|
5
5
|
License: MIT
|
6
6
|
Keywords: solana,solana ai,solana agent,ai,ai agent,ai agents
|
@@ -750,7 +750,7 @@ async for response in solana_agent.process("user123", "Send an email to bob@bob.
|
|
750
750
|
|
751
751
|
### Image Generation
|
752
752
|
|
753
|
-
Generate images using OpenAI
|
753
|
+
Generate images using OpenAI, Grok, or Gemini image models and upload them to S3-compatible storage.
|
754
754
|
|
755
755
|
`pip install sakit`
|
756
756
|
|
@@ -758,11 +758,10 @@ Generate images using OpenAI's `gpt-image-1` and upload them to S3-compatible st
|
|
758
758
|
from solana_agent import SolanaAgent
|
759
759
|
|
760
760
|
config = {
|
761
|
-
"openai": {
|
762
|
-
"api_key": "your-openai-api-key" # Required: Your OpenAI API key
|
763
|
-
},
|
764
761
|
"tools": {
|
765
762
|
"image_gen": {
|
763
|
+
"provider": "grok", # Required: either "openai", "grok", or "gemini"
|
764
|
+
"api_key": "your-api-key", # Required: your OpenAI or Grok or Gemini API key
|
766
765
|
"s3_endpoint_url": "https://your-s3-endpoint.com", # Required: e.g., https://nyc3.digitaloceanspaces.com
|
767
766
|
"s3_access_key_id": "YOUR_S3_ACCESS_KEY", # Required: Your S3 access key ID
|
768
767
|
"s3_secret_access_key": "YOUR_S3_SECRET_KEY", # Required: Your S3 secret access key
|
@@ -715,7 +715,7 @@ async for response in solana_agent.process("user123", "Send an email to bob@bob.
|
|
715
715
|
|
716
716
|
### Image Generation
|
717
717
|
|
718
|
-
Generate images using OpenAI
|
718
|
+
Generate images using OpenAI, Grok, or Gemini image models and upload them to S3-compatible storage.
|
719
719
|
|
720
720
|
`pip install sakit`
|
721
721
|
|
@@ -723,11 +723,10 @@ Generate images using OpenAI's `gpt-image-1` and upload them to S3-compatible st
|
|
723
723
|
from solana_agent import SolanaAgent
|
724
724
|
|
725
725
|
config = {
|
726
|
-
"openai": {
|
727
|
-
"api_key": "your-openai-api-key" # Required: Your OpenAI API key
|
728
|
-
},
|
729
726
|
"tools": {
|
730
727
|
"image_gen": {
|
728
|
+
"provider": "grok", # Required: either "openai", "grok", or "gemini"
|
729
|
+
"api_key": "your-api-key", # Required: your OpenAI or Grok or Gemini API key
|
731
730
|
"s3_endpoint_url": "https://your-s3-endpoint.com", # Required: e.g., https://nyc3.digitaloceanspaces.com
|
732
731
|
"s3_access_key_id": "YOUR_S3_ACCESS_KEY", # Required: Your S3 access key ID
|
733
732
|
"s3_secret_access_key": "YOUR_S3_SECRET_KEY", # Required: Your S3 secret access key
|
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
|
{solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/guardrails/guardrails.py
RENAMED
File without changes
|
File without changes
|
{solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/data_storage.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/providers/vector_storage.py
RENAMED
File without changes
|
File without changes
|
{solana_agent-29.1.1 → solana_agent-29.1.2}/solana_agent/interfaces/services/knowledge_base.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
|