You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
505 B
18 lines
505 B
# OpenAI API Key (required)
|
|
OPENAI_API_KEY=sk-your-openai-api-key-here
|
|
|
|
# Your wallet address for receiving payments (required)
|
|
# This should be an EVM-compatible address (Ethereum, Base, etc.)
|
|
WALLET_ADDRESS=0xYourWalletAddressHere
|
|
|
|
# For mainnet only (optional during testnet testing)
|
|
# Get these from https://cdp.coinbase.com
|
|
CDP_API_KEY_ID=your-cdp-api-key-id
|
|
CDP_API_KEY_SECRET=your-cdp-api-key-secret
|
|
|
|
# Optional: Configure the agent
|
|
AGENT_MODEL_NAME=gpt-4o
|
|
AGENT_TEMPERATURE=0.5
|
|
AGENT_MAX_LOOPS=1
|
|
|