Skip to content

Commit 42b66f1

Browse files
committedJan 8, 2025
Merge branch 'develop' into pr-1934
2 parents ef85bda + 0787a87 commit 42b66f1

File tree

154 files changed

+13008
-1284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+13008
-1284
lines changed
 

‎.env.example

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
CACHE_STORE=database # Defaults to database. Other available cache store: redis and filesystem
33
REDIS_URL= # Redis URL - could be a local redis instance or cloud hosted redis. Also support rediss:// urls
44

5+
PGLITE_DATA_DIR= #../pgLite/ if selecting a directory --- or memory:// if selecting in memory
6+
57
# Discord Configuration
68
DISCORD_APPLICATION_ID=
79
DISCORD_API_TOKEN= # Bot token
@@ -197,6 +199,9 @@ EVM_PROVIDER_URL=
197199
AVALANCHE_PRIVATE_KEY=
198200
AVALANCHE_PUBLIC_KEY=
199201

202+
# Arthera
203+
ARTHERA_PRIVATE_KEY=
204+
200205
# Solana
201206
SOLANA_PRIVATE_KEY=
202207
SOLANA_PUBLIC_KEY=
@@ -263,6 +268,9 @@ CHARITY_ADDRESS_ETH=0x750EF1D7a0b4Ab1c97B7A623D7917CcEb5ea779C
263268
CHARITY_ADDRESS_ARB=0x1234567890123456789012345678901234567890
264269
CHARITY_ADDRESS_POL=0x1234567890123456789012345678901234567890
265270

271+
# thirdweb
272+
THIRDWEB_SECRET_KEY= # Create key on thirdweb developer dashboard: https://thirdweb.com/
273+
266274
# Conflux Configuration
267275
CONFLUX_CORE_PRIVATE_KEY=
268276
CONFLUX_CORE_SPACE_RPC_URL=
@@ -295,6 +303,10 @@ MEDIUM_VENICE_MODEL= # Default: llama-3.3-70b
295303
LARGE_VENICE_MODEL= # Default: llama-3.1-405b
296304
IMAGE_VENICE_MODEL= # Default: fluently-xl
297305

306+
# Coin Price Configuration
307+
COINMARKETCAP_API_KEY=
308+
COINGECKO_API_KEY=
309+
298310
# Akash Chat API Configuration docs: https://chatapi.akash.network/documentation
299311
AKASH_CHAT_API_KEY= # Get from https://chatapi.akash.network/
300312
SMALL_AKASH_CHAT_API_MODEL= # Default: Meta-Llama-3-2-3B-Instruct
@@ -401,6 +413,12 @@ FUEL_WALLET_PRIVATE_KEY=
401413
TOKENIZER_MODEL= # Specify the tokenizer model to be used.
402414
TOKENIZER_TYPE= # Options: tiktoken (for OpenAI models) or auto (AutoTokenizer from Hugging Face for non-OpenAI models). Default: tiktoken.
403415

416+
417+
# Spheron
418+
SPHERON_PRIVATE_KEY=
419+
SPHERON_PROVIDER_PROXY_URL=
420+
SPHERON_WALLET_ADDRESS=
421+
404422
# Stargaze NFT marketplace from Cosmos (You can use https://graphql.mainnet.stargaze-apis.com/graphql)
405423
STARGAZE_ENDPOINT=
406424

@@ -409,3 +427,7 @@ GENLAYER_PRIVATE_KEY=0x000000000000000000000000000000000000000000000000000000000
409427

410428
# OpenWeather
411429
OPEN_WEATHER_API_KEY= # OpenWeather API key
430+
431+
# Allora
432+
ALLORA_API_KEY=UP-f8db7d6558ab432ca0d92716 # Allora API key
433+
ALLORA_CHAIN_SLUG=testnet # must be one of mainnet, testnet. If not specified, it will use testnet by default

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ packages/plugin-buttplug/intiface-engine
1515
dist/
1616
# Allow models directory but ignore model files
1717
models/*.gguf
18+
pgLite/
1819

1920
cookies.json
2021

0 commit comments

Comments
 (0)
Please sign in to comment.