mezoAgent 0.3.1__tar.gz → 0.3.3__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- mezoagent-0.3.3/PKG-INFO +9 -0
- mezoagent-0.3.3/mezoAgent.egg-info/PKG-INFO +9 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezoAgent.egg-info/requires.txt +2 -2
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezo_agent/config.py +2 -1
- mezoagent-0.3.3/setup.py +19 -0
- mezoagent-0.3.1/PKG-INFO +0 -10
- mezoagent-0.3.1/mezoAgent.egg-info/PKG-INFO +0 -10
- mezoagent-0.3.1/setup.py +0 -16
- {mezoagent-0.3.1 → mezoagent-0.3.3}/README.md +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezoAgent.egg-info/SOURCES.txt +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezoAgent.egg-info/dependency_links.txt +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezoAgent.egg-info/top_level.txt +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezo_agent/__init__.py +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezo_agent/parsing.py +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezo_agent/swap_musd_btc.py +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/mezo_agent/transaction.py +0 -0
- {mezoagent-0.3.1 → mezoagent-0.3.3}/setup.cfg +0 -0
mezoagent-0.3.3/PKG-INFO
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: mezoAgent
|
3
|
+
Version: 0.3.3
|
4
|
+
Summary: A Python package for Mezo Agent transactions with LangChain tools
|
5
|
+
Author: Dreadwulf, Duck, Digi
|
6
|
+
Requires-Dist: python-dotenv
|
7
|
+
Requires-Dist: web3
|
8
|
+
Requires-Dist: langchain
|
9
|
+
Requires-Dist: langchain_openai
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: mezoAgent
|
3
|
+
Version: 0.3.3
|
4
|
+
Summary: A Python package for Mezo Agent transactions with LangChain tools
|
5
|
+
Author: Dreadwulf, Duck, Digi
|
6
|
+
Requires-Dist: python-dotenv
|
7
|
+
Requires-Dist: web3
|
8
|
+
Requires-Dist: langchain
|
9
|
+
Requires-Dist: langchain_openai
|
@@ -44,7 +44,8 @@ WRAPPED_BTC_ADDRESS = "0xA460F83cdd9584E4bD6a9838abb0baC58EAde999"
|
|
44
44
|
ROUTER_ADDRESS = "0xC2E61936a542D78b9c3AA024fA141c4C632DF6c1"
|
45
45
|
|
46
46
|
# Load router ABI from a JSON file packaged with mezoAgent
|
47
|
-
router_abi_path = os.path.join(os.path.dirname(__file__), "new_router_abi.json")
|
47
|
+
router_abi_path = os.path.join(os.path.dirname(__file__), "data", "new_router_abi.json")
|
48
48
|
with open(router_abi_path, "r") as f:
|
49
49
|
router_abi = json.load(f)
|
50
|
+
|
50
51
|
router_contract = web3_instance.eth.contract(address=ROUTER_ADDRESS, abi=router_abi)
|
mezoagent-0.3.3/setup.py
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
setup(
|
4
|
+
name="mezoAgent",
|
5
|
+
version="0.3.3",
|
6
|
+
packages=find_packages(),
|
7
|
+
include_package_data=True,
|
8
|
+
package_data={
|
9
|
+
"mezoAgent": ["data/*.json"],
|
10
|
+
},
|
11
|
+
install_requires=[
|
12
|
+
"python-dotenv",
|
13
|
+
"web3",
|
14
|
+
"langchain",
|
15
|
+
"langchain_openai",
|
16
|
+
],
|
17
|
+
author="Dreadwulf, Duck, Digi",
|
18
|
+
description="A Python package for Mezo Agent transactions with LangChain tools",
|
19
|
+
)
|
mezoagent-0.3.1/PKG-INFO
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: mezoAgent
|
3
|
-
Version: 0.3.1
|
4
|
-
Summary: A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.
|
5
|
-
Author: Dreadwulf, Duck, Digi
|
6
|
-
Requires-Python: >=3.7
|
7
|
-
Requires-Dist: web3
|
8
|
-
Requires-Dist: langchain
|
9
|
-
Requires-Dist: langchain-openai
|
10
|
-
Requires-Dist: python-dotenv
|
@@ -1,10 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: mezoAgent
|
3
|
-
Version: 0.3.1
|
4
|
-
Summary: A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.
|
5
|
-
Author: Dreadwulf, Duck, Digi
|
6
|
-
Requires-Python: >=3.7
|
7
|
-
Requires-Dist: web3
|
8
|
-
Requires-Dist: langchain
|
9
|
-
Requires-Dist: langchain-openai
|
10
|
-
Requires-Dist: python-dotenv
|
mezoagent-0.3.1/setup.py
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
|
3
|
-
setup(
|
4
|
-
name="mezoAgent",
|
5
|
-
version="0.3.1",
|
6
|
-
packages=find_packages(),
|
7
|
-
install_requires=[
|
8
|
-
"web3",
|
9
|
-
"langchain",
|
10
|
-
"langchain-openai",
|
11
|
-
"python-dotenv"
|
12
|
-
],
|
13
|
-
description="A LangChain based tool kit for AI Agents to send BTC and mUSD transactions on Mezo Matsnet.",
|
14
|
-
author="Dreadwulf, Duck, Digi",
|
15
|
-
python_requires=">=3.7",
|
16
|
-
)
|
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
|