solana-agent 17.0.6__py3-none-any.whl → 17.0.8__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,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 17.0.6
4
- Summary: The Future of Work
3
+ Version: 17.0.8
4
+ Summary: Agentic IQ
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
7
7
  Author: Bevan Hunt
@@ -16,7 +16,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
16
  Requires-Dist: openai (>=1.68.2,<2.0.0)
17
17
  Requires-Dist: pydantic (>=2.10.6,<3.0.0)
18
18
  Requires-Dist: pymongo (>=4.11.3,<5.0.0)
19
- Requires-Dist: zep-cloud (>=2.7.0,<3.0.0)
19
+ Requires-Dist: zep-cloud (>=2.8.0,<3.0.0)
20
20
  Requires-Dist: zep-python (>=2.0.2,<3.0.0)
21
21
  Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
22
22
  Description-Content-Type: text/markdown
@@ -34,35 +34,27 @@ Description-Content-Type: text/markdown
34
34
 
35
35
  ## Agentic IQ
36
36
 
37
- Solana Agent is an AI Agent framework defined on five key dimensions:
38
-
39
- * **Multi-Modal Intelligence:** Agents process both text and audio seamlessly. Users interact naturally through their preferred communication channel.
40
-
41
- * **Episodic Memory:** Agents remember past conversations with users. This eliminates repetitive explanations and builds meaningful relationships.
42
-
43
- * **Cognitive Routing:** Queries go to the most qualified agent automatically. Each specialist has domain-specific knowledge for optimal responses.
44
-
45
- * **Value Alignment:** Every agent follows clear organizational values and ethics. This ensures consistent, principled responses aligned with human priorities.
46
-
47
- * **Extensible Tooling:** Agents recognize when specialized tools are needed. They extend capabilities beyond conversation to take actions via Python package integration.
48
-
49
- This approach creates AI Agents that are intelligent, contextually aware, and aligned with organizational values.
37
+ Power your business using Solana Agent!
50
38
 
39
+ * **Brand:** AI agents will speak in your brand voice
40
+ * **Expert:** The AI agent with the most expertise will answer your users' inquiries
41
+ * **Extend:** Assign tools for your AI agents to perform actions
51
42
 
52
43
  ## Features
53
44
 
54
45
  * Seamless text and audio streaming with real-time multi-modal processing
55
46
  * Persistent memory that preserves context across all agent interactions
56
47
  * Intelligent query routing to agents with optimal domain expertise
57
- * Unified value system ensuring aligned, principled agent responses
58
- * Powerful tool integration that extends capabilities using standard Python packages
48
+ * Unified value system ensuring brand-aligned agent responses
49
+ * Powerful tool integration using standard Python packages
50
+ * Assigned tools are utilized by agents automatically and effectively
59
51
 
60
52
  ## Stack
61
53
 
62
- * [Python](https://python.org) - programming language
54
+ * [Python](https://python.org) - Programming Language
63
55
  * [OpenAI](https://openai.com) - LLMs
64
- * [MongoDB](https://mongodb.com) - database
65
- * [Zep](https://getzep.com) - conversational memory
56
+ * [MongoDB](https://mongodb.com) - Database
57
+ * [Zep](https://getzep.com) - Conversational Memory
66
58
 
67
59
  ## Installation
68
60
 
@@ -70,10 +62,6 @@ You can install Solana Agent using pip:
70
62
 
71
63
  `pip install solana-agent`
72
64
 
73
- ## Documentation
74
-
75
- Each public method has a docstring for real-time IDE hinting.
76
-
77
65
  ## Example App
78
66
 
79
67
  ```python
@@ -81,19 +69,15 @@ from solana_agent import SolanaAgent
81
69
 
82
70
  config = {
83
71
  "organization": {
84
- "mission_statement": "To revolutionize knowledge work through AI-human collaboration that puts people first.",
72
+ "mission_statement": "To provide users with a one-stop shop for their queries.",
85
73
  "values": {
86
- "Human-Centered": "Always prioritize human well-being and augmentation over replacement.",
87
- "Transparency": "Provide clear explanations for decisions and never hide information.",
88
- "Collective Intelligence": "Value diverse perspectives and combine human and AI strengths.",
89
- "Continuous Learning": "Embrace feedback and continuously improve based on experience."
74
+ "Friendliness": "Users must be treated fairly, openly, and with friendliness.",
75
+ "Ethical": "Agents must use a strong ethical framework in their interactions with users.",
90
76
  },
91
77
  "goals": [
92
- "Enable human experts to focus on high-value creative work",
93
- "Reduce administrative overhead through intelligent automation",
94
- "Create seamless knowledge flow across the organization"
78
+ "Empower users with great answers to their queries.",
95
79
  ],
96
- "guidance": "When making decisions, prioritize long-term user success over short-term efficiency."
80
+ "guidance": "Align all interactions with the success of the user while respecting human dignity."
97
81
  },
98
82
  "mongo": {
99
83
  "connection_string": "mongodb://localhost:27017",
@@ -117,19 +101,12 @@ config = {
117
101
  ],
118
102
  }
119
103
 
120
- # Create agent with configuration
121
104
  solana_agent = SolanaAgent(config=config)
122
105
 
123
- # Process a query that can use tools
124
106
  async for response in solana_agent.process("user123", "What are the latest AI developments?"):
125
107
  print(response, end="")
126
108
  ```
127
109
 
128
- ## Models Used
129
- * `gpt-4o-mini`
130
- * `gpt-4o-mini-transcribe`
131
- * `tts-1`
132
-
133
110
  ## Solana Agent Kit
134
111
 
135
112
  A collection of Solana Agent tools
@@ -31,7 +31,7 @@ solana_agent/services/__init__.py,sha256=ab_NXJmwYUCmCrCzuTlZ47bJZINW0Y0F5jfQ9Oo
31
31
  solana_agent/services/agent.py,sha256=j0aI_BGaY5Nhkb9ga0r4BqI3qMKu5TOc4QPQsU3NHyQ,17000
32
32
  solana_agent/services/query.py,sha256=rm7XlTCcp5NeorIaLUdr7rdxtWCgg1Q1qe5YuI1bumo,11246
33
33
  solana_agent/services/routing.py,sha256=TPJ2Pas4acE93QzMEV6ZP670OtTNrVEPa76fz6urEV4,4996
34
- solana_agent-17.0.6.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
35
- solana_agent-17.0.6.dist-info/METADATA,sha256=AONUV19nfoF85FcrwEw6X3wF0Ec8umKT78xrhCHpsYY,5862
36
- solana_agent-17.0.6.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
37
- solana_agent-17.0.6.dist-info/RECORD,,
34
+ solana_agent-17.0.8.dist-info/LICENSE,sha256=BnSRc-NSFuyF2s496l_4EyrwAP6YimvxWcjPiJ0J7g4,1057
35
+ solana_agent-17.0.8.dist-info/METADATA,sha256=uHm7xKKQZSlnCJMymNFgTDtmAuMP4rSm5vV5GzmTo5E,4551
36
+ solana_agent-17.0.8.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
37
+ solana_agent-17.0.8.dist-info/RECORD,,