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.
- {mezoagent-0.8.0 → mezoagent-0.8.1}/PKG-INFO +2 -2
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/PKG-INFO +2 -2
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/__init__.py +4 -5
- {mezoagent-0.8.0 → mezoagent-0.8.1}/setup.py +2 -2
- {mezoagent-0.8.0 → mezoagent-0.8.1}/MANIFEST.in +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/README.md +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/SOURCES.txt +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/dependency_links.txt +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/requires.txt +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezoAgent.egg-info/top_level.txt +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/characters.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/chat.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/config.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/data/new_router.json +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/parsing.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/safe_mode_btc_tool.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/swap_musd_btc.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_balance_tool.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_price_tool.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/token_utils.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/transaction.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/twitter_client.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/twitter_manager.py +0 -0
- {mezoagent-0.8.0 → mezoagent-0.8.1}/mezo_agent/utils.py +0 -0
- {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.
|
4
|
-
Summary: A Python package for Mezo Agent
|
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.
|
4
|
-
Summary: A Python package for Mezo Agent
|
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 .
|
6
|
-
from .
|
7
|
-
|
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",
|
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.
|
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
|
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
|
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
|