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.
@@ -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
@@ -1,4 +1,4 @@
1
+ python-dotenv
1
2
  web3
2
3
  langchain
3
- langchain-openai
4
- python-dotenv
4
+ 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)
@@ -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