A python client to interact with the crypto.com AI agent service
Project description
Crypto.com AI Agent Client.py
The Crypto.com AI Agent Client.py is a Python library designed to facilitate easy and efficient interactions with the Crypto.com AI Agent Service API. This client library provides methods to send queries and fetch responses from the Crypto.com AI Agent Service seamlessly.
Features
- Simple and intuitive API for interacting with the Crypto.com AI Agent.
- Supports sending queries and receiving AI-generated responses.
- Configurable client instances tailored to your specific endpoint and security needs.
- Currently in beta: Expect frequent updates and potential changes in future releases.
Installation
To install the package, run the following command:
pip install crypto_com_ai_agent_client
Usage
Here’s how you can use the Crypto.com AI Agent Client in your project:
Configuring the Client
from crypto_com_ai_agent_client import create_client
client = create_client({
'openAI': {
'apiKey': 'YOUR_OPEN_AI_API_KEY',
'model': 'gpt-4o' # Optional, defaults to 'gpt-4-turbo'
},
'chainId': 25, # 25 for Cronos EVM Mainnet, 338 for Cronos EVM Testnet, 388 for Cronos ZkEVM Mainnet, 240 for Cronos ZkEVM Testnet
'explorerKeys': {
'cronosMainnetKey': 'CRONOS_MAINNET_API_KEY',
'cronosTestnetKey': 'CRONOS_TESTNET_API_KEY',
'cronosZkEvmKey': 'CRONOS_ZKEVM_API_KEY',
'cronosZkEvmTestnetKey': 'CRONOS_ZKEVM_TESTNET_API_KEY'
},
'context': [], # Optional
'signerAppUrl': 'https://my-signer-app', # Optional
'customRPC': 'https://rpc.vvs.finance' # Optional, if not provided, the default RPC for the chainId will be used
})
Sending a Query
import json
def send_query(query):
try:
response = client.agent.generate_query(query)
print('Crypto.com AI Agent Response:', json.dumps(response.to_dict(), indent=2))
except Exception as e:
print(f"Error sending query: {str(e)}")
send_query("What is the latest block?")
API
Client Methods
generate_query(query)
: Generates a query that is sent to the Crypto.com AI Agent Service and returns a response.
Configuration Options
openAI
: Dictionary containing OpenAI configurationapiKey
: Your OpenAI API keymodel
: (Optional) The model to use (defaults to 'gpt-4-turbo')
chainId
: The ID of the blockchain network (25 for Cronos EVM Mainnet, 338 for Cronos EVM Testnet, 388 for Cronos ZkEVM Mainnet, 240 for Cronos ZkEVM Testnet)explorerKeys
: Dictionary of API keys for different explorers, ensure that the keys match the chainIdcronosMainnetKey
: (Optional) API key for Cronos MainnetcronosTestnetKey
: (Optional) API key for Cronos TestnetcronosZkEvmKey
: (Optional) API key for Cronos ZkEVMcronosZkEvmTestnetKey
: (Optional) API key for Cronos ZkEVM Testnet
signerAppUrl
: (Optional) URL for the signer appcontext
: (Optional) List of context items for the querycustomRPC
: (Optional) Custom RPC URL, if not provided, the default RPC for the chainId will be used
Licensing
The code in this project is licensed under the MIT license.
Contact
If you have any questions or comments about the library, please feel free to open an issue or a pull request on our GitHub repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file crypto_com_ai_agent_client-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: crypto_com_ai_agent_client-1.0.5-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ca3700200b2a17f6955c86c2bff0ca17b8015a91e6f1058148c03285903d5df |
|
MD5 | b817ea91dcabb27778491b222aa50da2 |
|
BLAKE2b-256 | f3abce155027e4d1c93b82772fe6228ac1bffbf02f253af6badc2dd47823e521 |