mezoAgent 0.8.0__tar.gz → 0.8.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 (25) hide show
  1. {mezoagent-0.8.0 → mezoagent-0.8.1}/PKG-INFO +2 -2
  2. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/PKG-INFO +2 -2
  3. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/__init__.py +4 -5
  4. {mezoagent-0.8.0 → mezoagent-0.8.1}/setup.py +2 -2
  5. {mezoagent-0.8.0 → mezoagent-0.8.1}/MANIFEST.in +0 -0
  6. {mezoagent-0.8.0 → mezoagent-0.8.1}/README.md +0 -0
  7. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/SOURCES.txt +0 -0
  8. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/dependency_links.txt +0 -0
  9. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/requires.txt +0 -0
  10. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/top_level.txt +0 -0
  11. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/characters.py +0 -0
  12. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/chat.py +0 -0
  13. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/config.py +0 -0
  14. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/data/new_router.json +0 -0
  15. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/parsing.py +0 -0
  16. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/safe_mode_btc_tool.py +0 -0
  17. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/swap_musd_btc.py +0 -0
  18. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_balance_tool.py +0 -0
  19. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_price_tool.py +0 -0
  20. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_utils.py +0 -0
  21. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/transaction.py +0 -0
  22. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/twitter_client.py +0 -0
  23. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/twitter_manager.py +0 -0
  24. {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/utils.py +0 -0
  25. {mezoagent-0.8.0 → mezoagent-0.8.1}/setup.cfg +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.8.0
4
- Summary: A Python package for Mezo Agent transactions with LangChain tools
3
+ Version: 0.8.1
4
+ Summary: A Python package for Mezo Agent tools with LangChain tools
5
5
  Author: Dreadwulf, Duck, Digi
6
6
  Requires-Dist: python-dotenv
7
7
  Requires-Dist: web3
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mezoAgent
3
- Version: 0.8.0
4
- Summary: A Python package for Mezo Agent transactions with LangChain tools
3
+ Version: 0.8.1
4
+ Summary: A Python package for Mezo Agent tools with LangChain tools
5
5
  Author: Dreadwulf, Duck, Digi
6
6
  Requires-Dist: python-dotenv
7
7
  Requires-Dist: web3
@@ -2,10 +2,9 @@ from .transaction import mezo_agent_transaction_btc, mezo_agent_musd_transaction
2
2
  from .swap_musd_btc import mezo_agent_swap_musd_btc
3
3
  from .chat import mezo_character_chat
4
4
  from .characters import get_character_prompt
5
- from .tools.token_balance_tool import mezo_agent_token_balance_tool
6
- from .tools.token_price_tool import mezo_agent_token_price_tool
7
- # Import the new Safe Mode BTC Transaction Tool
8
- from .tools.safe_mode_btc_tool import mezo_agent_safe_mode_btc_transaction
5
+ from .token_balance_tool import mezo_agent_token_balance_tool
6
+ from .token_price_tool import mezo_agent_token_price_tool
7
+ from .safe_mode_btc_tool import mezo_agent_safe_mode_btc_transaction
9
8
 
10
9
  __all__ = [
11
10
  "mezo_agent_transaction_btc",
@@ -14,6 +13,6 @@ __all__ = [
14
13
  "mezo_character_chat",
15
14
  "mezo_agent_token_balance_tool",
16
15
  "mezo_agent_token_price_tool",
17
- "mezo_agent_safe_mode_btc_transaction", # Expose new tool
16
+ "mezo_agent_safe_mode_btc_transaction",
18
17
  "get_character_prompt"
19
18
  ]
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mezoAgent",
5
- version="0.8.0",
5
+ version="0.8.1",
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  package_data={
@@ -15,5 +15,5 @@ setup(
15
15
  "langchain_openai",
16
16
  ],
17
17
  author="Dreadwulf, Duck, Digi",
18
- description="A Python package for Mezo Agent transactions with LangChain tools",
18
+ description="A Python package for Mezo Agent tools with LangChain tools",
19
19
  )
File without changes
File without changes
File without changes
File without changes
File without changes