@@ -18,6 +18,10 @@ SUPABASE_ANON_KEY=
18
18
# Comma separated list of remote character urls (optional)
19
19
REMOTE_CHARACTER_URLS =
20
20
21
+ # Logging
22
+ DEFAULT_LOG_LEVEL = info
23
+ LOG_JSON_FORMAT = # Print everything in logger as json; false by default
24
+
21
25
# ##############################
22
26
# ### Client Configurations ####
23
27
# ##############################
@@ -87,6 +91,13 @@ EMBEDDING_OPENAI_MODEL= # Default: text-embedding-3-small
87
91
IMAGE_OPENAI_MODEL = # Default: dall-e-3
88
92
USE_OPENAI_EMBEDDING = # Set to TRUE for OpenAI/1536, leave blank for local
89
93
94
+ # Atoma SDK Configuration
95
+ ATOMASDK_BEARER_AUTH = # Atoma SDK Bearer Auth token
96
+ ATOMA_API_URL = # Default: https://api.atoma.network/v1
97
+ SMALL_ATOMA_MODEL = # Default: meta-llama/Llama-3.3-70B-Instruct
98
+ MEDIUM_ATOMA_MODEL = # Default: meta-llama/Llama-3.3-70B-Instruct
99
+ LARGE_ATOMA_MODEL = # Default: meta-llama/Llama-3.3-70B-Instruct
100
+
90
101
# Eternal AI's Decentralized Inference API
91
102
ETERNALAI_URL =
92
103
ETERNALAI_MODEL = # Default: "NousResearch/Hermes-3-Llama-3.1-70B-FP8"
@@ -134,8 +145,12 @@ MEDIUM_AKASH_CHAT_API_MODEL= # Default: Meta-Llama-3-3-70B-Instruct
134
145
LARGE_AKASH_CHAT_API_MODEL = # Default: Meta-Llama-3-1-405B-Instruct-FP8
135
146
136
147
# Livepeer configuration
137
- LIVEPEER_GATEWAY_URL = # Free inference gateways and docs: https://livepeer-eliza.com/
138
- LIVEPEER_IMAGE_MODEL = # Default: ByteDance/SDXL-Lightning
148
+
149
+ LIVEPEER_GATEWAY_URL = https://dream-gateway.livepeer.cloud # Free inference gateways and docs: https://livepeer-eliza.com/
150
+ IMAGE_LIVEPEER_MODEL = # Default: ByteDance/SDXL-Lightning
151
+ SMALL_LIVEPEER_MODEL = # Default: meta-llama/Meta-Llama-3.1-8B-Instruct
152
+ MEDIUM_LIVEPEER_MODEL = # Default: meta-llama/Meta-Llama-3.1-8B-Instruct
153
+ LARGE_LIVEPEER_MODEL = # Default: meta-llama/Meta-Llama-3.1-8B-Instruct
139
154
140
155
# Speech Synthesis
141
156
ELEVENLABS_XI_API_KEY = # API key from elevenlabs
@@ -221,8 +236,10 @@ LARGE_ANTHROPIC_MODEL= # Default: claude-3-5-sonnet-20241022
221
236
HEURIST_API_KEY = # Get from https://heurist.ai/dev-access
222
237
SMALL_HEURIST_MODEL = # Default: meta-llama/llama-3-70b-instruct
223
238
MEDIUM_HEURIST_MODEL = # Default: meta-llama/llama-3-70b-instruct
224
- LARGE_HEURIST_MODEL = # Default: meta-llama/llama-3.1-405b-instruct
225
- HEURIST_IMAGE_MODEL = # Default: PepeXL
239
+ LARGE_HEURIST_MODEL = # Default: meta-llama/llama-3.3-70b-instruct
240
+ HEURIST_IMAGE_MODEL = # Default: FLUX.1-dev
241
+ HEURIST_EMBEDDING_MODEL = # Default: BAAI/bge-large-en-v1.5
242
+ USE_HEURIST_EMBEDDING = # Set to TRUE for HEURIST embedding, leave blank for local
226
243
227
244
# Gaianet Configuration
228
245
GAIANET_MODEL =
@@ -302,6 +319,10 @@ SOLANA_ADMIN_PRIVATE_KEY= # This wallet is used to verify NFTs
302
319
SOLANA_ADMIN_PUBLIC_KEY = # This wallet is used to verify NFTs
303
320
SOLANA_VERIFY_TOKEN = # Authentication token for calling the verification API
304
321
322
+ # Injective
323
+ INJECTIVE_PRIVATE_KEY = #
324
+ INJECTIVE_PUBLIC_KEY = #
325
+ INJECTIVE_NETWORK = #
305
326
# Fallback Wallet Configuration (deprecated)
306
327
WALLET_PRIVATE_KEY =
307
328
WALLET_PUBLIC_KEY =
@@ -337,6 +358,11 @@ COINBASE_GENERATED_WALLET_ID= # Not your address but the wallet ID from ge
337
358
COINBASE_GENERATED_WALLET_HEX_SEED = # Not your address but the wallet hex seed from generating a wallet through the plugin and calling export
338
359
COINBASE_NOTIFICATION_URI = # For webhook plugin the uri you want to send the webhook to for dummy ones use https://webhook.site
339
360
361
+ # Coinbase AgentKit
362
+ COINBASE_AGENT_KIT_NETWORK = # defaults to 'base-sepolia'
363
+ CDP_API_KEY_NAME =
364
+ CDP_API_KEY_PRIVATE_KEY =
365
+
340
366
# Coinbase Charity Configuration
341
367
IS_CHARITABLE = false # Set to true to enable charity donations
342
368
CHARITY_ADDRESS_BASE = 0x1234567890123456789012345678901234567890
@@ -361,12 +387,19 @@ ZEROG_EVM_RPC=
361
387
ZEROG_PRIVATE_KEY =
362
388
ZEROG_FLOW_ADDRESS =
363
389
390
+ # IQ6900
391
+ # Load json recorded on-chain through IQ
392
+ # Inscribe your json character file here: https://elizacodein.com/
393
+
394
+ IQ_WALLET_ADDRESS = # If you enter the wallet address used on the site, the most recently inscribed json will be loaded.
395
+ IQSOlRPC =
396
+
364
397
# Squid Router
365
398
SQUID_SDK_URL = https://apiplus.squidrouter.com # Default: https://apiplus.squidrouter.com
366
399
SQUID_INTEGRATOR_ID = # get integrator id through https://docs.squidrouter.com/
367
400
SQUID_EVM_ADDRESS =
368
401
SQUID_EVM_PRIVATE_KEY =
369
- SQUID_API_THROTTLE_INTERVAL = # Default: 0 ; Used to throttle API calls to avoid rate limiting (in ms)
402
+ SQUID_API_THROTTLE_INTERVAL = 1000 # Default: 1000 ; Used to throttle API calls to avoid rate limiting (in ms)
370
403
371
404
# TEE Configuration
372
405
# TEE_MODE options:
@@ -543,6 +576,10 @@ AWS_SECRET_ACCESS_KEY=
543
576
AWS_REGION =
544
577
AWS_S3_BUCKET =
545
578
AWS_S3_UPLOAD_PATH =
579
+ AWS_S3_ENDPOINT =
580
+ AWS_S3_SSL_ENABLED =
581
+ AWS_S3_FORCE_PATH_STYLE =
582
+
546
583
547
584
# Deepgram
548
585
DEEPGRAM_API_KEY =
@@ -616,3 +653,40 @@ INSTAGRAM_POST_INTERVAL_MAX=120 # Default: 120 minutes
616
653
INSTAGRAM_ENABLE_ACTION_PROCESSING = false # Enable/disable action processing
617
654
INSTAGRAM_ACTION_INTERVAL = 5 # Interval between actions in minutes
618
655
INSTAGRAM_MAX_ACTIONS = 1 # Maximum number of actions to process at once
656
+
657
+ # ###################################
658
+ # ### Pyth Plugin Configuration ####
659
+ # ###################################
660
+ # Network Environment (mainnet or testnet)git
661
+ PYTH_NETWORK_ENV = mainnet
662
+
663
+ # Mainnet Network Configuration
664
+ PYTH_MAINNET_HERMES_URL = https://hermes.pyth.network
665
+ PYTH_MAINNET_WSS_URL = wss://hermes.pyth.network/ws
666
+ PYTH_MAINNET_PYTHNET_URL = https://pythnet.rpcpool.com
667
+ PYTH_MAINNET_CONTRACT_REGISTRY = https://pyth.network/developers/price-feed-ids
668
+ PYTH_MAINNET_PROGRAM_KEY =
669
+
670
+ # Testnet Network Configuration
671
+ PYTH_TESTNET_HERMES_URL = https://hermes.pyth.network
672
+ PYTH_TESTNET_WSS_URL = wss://hermes.pyth.network/ws
673
+ PYTH_TESTNET_PYTHNET_URL = https://pythnet.rpcpool.com
674
+ PYTH_TESTNET_CONTRACT_REGISTRY = https://pyth.network/developers/price-feed-ids#testnet
675
+ PYTH_TESTNET_PROGRAM_KEY =
676
+
677
+ # Connection Settings
678
+ PYTH_MAX_RETRIES = 3
679
+ PYTH_RETRY_DELAY = 1000
680
+ PYTH_TIMEOUT = 5000
681
+ PYTH_GRANULAR_LOG = true
682
+ PYTH_LOG_LEVEL = debug
683
+ PYTH_LOG_LEVEL = info
684
+
685
+ # Runtime Settings
686
+ RUNTIME_CHECK_MODE = false
687
+
688
+ # Pyth Price Streaming and test ID
689
+ PYTH_ENABLE_PRICE_STREAMING = true
690
+ PYTH_MAX_PRICE_STREAMS = 2
691
+ PYTH_TEST_ID01 = 0xe62df6c8b4a85fe1a67db44dc12de5db330f7ac66b72dc658afedf0f4a415b43
692
+ PYTH_TEST_ID02 = 0xff61491a931112ddf1bd8147cd1b641375f79f5825126d665480874634fd0ace
0 commit comments