solana-agent 14.0.0__tar.gz → 14.0.1__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 (36) hide show
  1. {solana_agent-14.0.0 → solana_agent-14.0.1}/PKG-INFO +15 -10
  2. {solana_agent-14.0.0 → solana_agent-14.0.1}/README.md +13 -3
  3. {solana_agent-14.0.0 → solana_agent-14.0.1}/pyproject.toml +2 -8
  4. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/services/agent.py +3 -0
  5. {solana_agent-14.0.0 → solana_agent-14.0.1}/LICENSE +0 -0
  6. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/__init__.py +0 -0
  7. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/adapters/__init__.py +0 -0
  8. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/adapters/llm_adapter.py +0 -0
  9. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/adapters/mongodb_adapter.py +0 -0
  10. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/client/__init__.py +0 -0
  11. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/client/solana_agent.py +0 -0
  12. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/domains/__init__.py +0 -0
  13. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/domains/agents.py +0 -0
  14. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/domains/routing.py +0 -0
  15. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/factories/__init__.py +0 -0
  16. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/factories/agent_factory.py +0 -0
  17. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/__init__.py +0 -0
  18. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/plugins/plugins.py +0 -0
  19. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/providers/data_storage.py +0 -0
  20. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/providers/llm.py +0 -0
  21. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/providers/memory.py +0 -0
  22. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/repositories/agent.py +0 -0
  23. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/services/agent.py +0 -0
  24. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/services/query.py +0 -0
  25. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/interfaces/services/routing.py +0 -0
  26. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/plugins/__init__.py +0 -0
  27. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/plugins/manager.py +0 -0
  28. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/plugins/registry.py +0 -0
  29. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/plugins/tools/__init__.py +0 -0
  30. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/plugins/tools/auto_tool.py +0 -0
  31. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/repositories/__init__.py +0 -0
  32. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/repositories/agent.py +0 -0
  33. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/repositories/memory.py +0 -0
  34. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/services/__init__.py +0 -0
  35. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/services/query.py +0 -0
  36. {solana_agent-14.0.0 → solana_agent-14.0.1}/solana_agent/services/routing.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: solana-agent
3
- Version: 14.0.0
3
+ Version: 14.0.1
4
4
  Summary: The Future of Work
5
5
  License: MIT
6
6
  Keywords: ai,openai,ai agents,agi
@@ -13,14 +13,9 @@ Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
15
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
- Requires-Dist: ntplib (>=0.4.0,<0.5.0)
17
- Requires-Dist: openai (>=1.67.0,<2.0.0)
18
- Requires-Dist: pandas (>=2.2.3,<3.0.0)
19
- Requires-Dist: pinecone (>=6.0.2,<7.0.0)
16
+ Requires-Dist: openai (>=1.68.0,<2.0.0)
20
17
  Requires-Dist: pydantic (>=2.10.6,<3.0.0)
21
18
  Requires-Dist: pymongo (>=4.11.3,<5.0.0)
22
- Requires-Dist: qdrant-client (>=1.13.3,<2.0.0)
23
- Requires-Dist: requests (>=2.32.3,<3.0.0)
24
19
  Requires-Dist: zep-cloud (>=2.7.0,<3.0.0)
25
20
  Requires-Dist: zep-python (>=2.0.2,<3.0.0)
26
21
  Project-URL: Repository, https://github.com/truemagic-coder/solana-agent
@@ -29,6 +24,7 @@ Description-Content-Type: text/markdown
29
24
  # Solana Agent
30
25
 
31
26
  [![PyPI - Version](https://img.shields.io/pypi/v/solana-agent)](https://pypi.org/project/solana-agent/)
27
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/solana-agent?color=yellow)](https://pypi.org/project/solana-agent/)
32
28
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
33
29
  [![Python 3.12+](https://img.shields.io/badge/python-3.12+-orange.svg)](https://www.python.org/downloads/)
34
30
  [![codecov](https://img.shields.io/codecov/c/github/truemagic-coder/solana-agent/main.svg)](https://codecov.io/gh/truemagic-coder/solana-agent)
@@ -36,13 +32,22 @@ Description-Content-Type: text/markdown
36
32
 
37
33
  ![Solana Agent Logo](https://dl.walletbubbles.com/solana-agent-logo.png?width=200)
38
34
 
39
- ## Technical Features
35
+ ## Features
40
36
 
41
37
  * Text streaming messages by AI Agents
38
+ * Conversational memory per user shared by all AI Agents
42
39
  * Routing based on AI Agent specializations
43
- * Built-in default Internet Search for AI Agents
40
+ * Built-in Internet Search for all AI Agents
41
+ * Organizational mission, values, goals, and guidance for all AI Agents
44
42
  * Robust AI Agent tool plugins based on standard python packages
45
43
 
44
+ ## Stack
45
+
46
+ * [Python](https://python.org) - programming language
47
+ * [OpenAI](https://openai.com) - LLMs
48
+ * [MongoDB](https://mongodb.com) - database
49
+ * [Zep](https://getzep.com) - conversational memory
50
+
46
51
  ## Installation
47
52
 
48
53
  You can install Solana Agent using pip:
@@ -107,7 +112,7 @@ async for response in solana_agent.process("user123", "What are the latest AI de
107
112
  print(response, end="")
108
113
  ```
109
114
 
110
- ## Solana Agent Kit (plugins collection)
115
+ ## Solana Agent Kit
111
116
 
112
117
  [Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
113
118
 
@@ -1,6 +1,7 @@
1
1
  # Solana Agent
2
2
 
3
3
  [![PyPI - Version](https://img.shields.io/pypi/v/solana-agent)](https://pypi.org/project/solana-agent/)
4
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/solana-agent?color=yellow)](https://pypi.org/project/solana-agent/)
4
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
5
6
  [![Python 3.12+](https://img.shields.io/badge/python-3.12+-orange.svg)](https://www.python.org/downloads/)
6
7
  [![codecov](https://img.shields.io/codecov/c/github/truemagic-coder/solana-agent/main.svg)](https://codecov.io/gh/truemagic-coder/solana-agent)
@@ -8,13 +9,22 @@
8
9
 
9
10
  ![Solana Agent Logo](https://dl.walletbubbles.com/solana-agent-logo.png?width=200)
10
11
 
11
- ## Technical Features
12
+ ## Features
12
13
 
13
14
  * Text streaming messages by AI Agents
15
+ * Conversational memory per user shared by all AI Agents
14
16
  * Routing based on AI Agent specializations
15
- * Built-in default Internet Search for AI Agents
17
+ * Built-in Internet Search for all AI Agents
18
+ * Organizational mission, values, goals, and guidance for all AI Agents
16
19
  * Robust AI Agent tool plugins based on standard python packages
17
20
 
21
+ ## Stack
22
+
23
+ * [Python](https://python.org) - programming language
24
+ * [OpenAI](https://openai.com) - LLMs
25
+ * [MongoDB](https://mongodb.com) - database
26
+ * [Zep](https://getzep.com) - conversational memory
27
+
18
28
  ## Installation
19
29
 
20
30
  You can install Solana Agent using pip:
@@ -79,7 +89,7 @@ async for response in solana_agent.process("user123", "What are the latest AI de
79
89
  print(response, end="")
80
90
  ```
81
91
 
82
- ## Solana Agent Kit (plugins collection)
92
+ ## Solana Agent Kit
83
93
 
84
94
  [Solana Agent Kit](https://github.com/truemagic-coder/solana-agent-kit)
85
95
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "solana-agent"
3
- version = "14.0.0"
3
+ version = "14.0.1"
4
4
  description = "The Future of Work"
5
5
  authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
6
6
  license = "MIT"
@@ -18,22 +18,16 @@ python_paths = [".", "tests"]
18
18
 
19
19
  [tool.poetry.dependencies]
20
20
  python = ">=3.12,<4.0"
21
- openai = "^1.67.0"
21
+ openai = "^1.68.0"
22
22
  pydantic = "^2.10.6"
23
23
  pymongo = "^4.11.3"
24
24
  zep-cloud = "^2.7.0"
25
25
  zep-python = "^2.0.2"
26
- requests = "^2.32.3"
27
- pinecone = "^6.0.2"
28
- pandas = "^2.2.3"
29
- ntplib = "^0.4.0"
30
- qdrant-client = "^1.13.3"
31
26
 
32
27
  [tool.poetry.dev-dependencies]
33
28
  pytest = "^8.3.5"
34
29
  pytest-cov = "^6.0.0"
35
30
  pytest-asyncio = "^0.25.3"
36
- hypothesis = "^6.129.4"
37
31
 
38
32
  [build-system]
39
33
  requires = ["poetry-core>=1.0.0"]
@@ -207,6 +207,9 @@ class AgentService(AgentServiceInterface):
207
207
  if tool_usage_prompt:
208
208
  system_prompt = f"{system_prompt}\n\n{tool_usage_prompt}"
209
209
 
210
+ # Add User ID context
211
+ system_prompt += f"\n\n User ID: {user_id}"
212
+
210
213
  # Add memory context
211
214
  if memory_context:
212
215
  system_prompt += f"\n\n Memory Context: {memory_context}"
File without changes