Skip to content

Commit f6a56d7

Browse files
authoredDec 14, 2024··
Merge branch 'develop' into patch-1
2 parents 4f1621b + fbbc3c3 commit f6a56d7

File tree

304 files changed

+32484
-45616
lines changed

Some content is hidden

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

304 files changed

+32484
-45616
lines changed
 

‎.env.example

+28-2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ SMALL_REDPILL_MODEL= # Default: gpt-4o-mini
8888
MEDIUM_REDPILL_MODEL= # Default: gpt-4o
8989
LARGE_REDPILL_MODEL= # Default: gpt-4o
9090

91+
# Grok Configuration
92+
SMALL_GROK_MODEL= # Default: grok-2-1212
93+
MEDIUM_GROK_MODEL= # Default: grok-2-1212
94+
LARGE_GROK_MODEL= # Default: grok-2-1212
95+
EMBEDDING_GROK_MODEL= # Default: grok-2-1212
96+
9197
# Ollama Configuration
9298
OLLAMA_SERVER_URL= # Default: localhost:11434
9399
OLLAMA_MODEL=
@@ -227,6 +233,7 @@ VENICE_API_KEY= # generate from venice settings
227233
SMALL_VENICE_MODEL= # Default: llama-3.3-70b
228234
MEDIUM_VENICE_MODEL= # Default: llama-3.3-70b
229235
LARGE_VENICE_MODEL= # Default: llama-3.1-405b
236+
IMAGE_VENICE_MODEL= # Default: fluently-xl
230237

231238
# fal.ai Configuration
232239
FAL_API_KEY=
@@ -261,13 +268,32 @@ ECHOCHAMBERS_DEFAULT_ROOM=general
261268
ECHOCHAMBERS_POLL_INTERVAL=60
262269
ECHOCHAMBERS_MAX_MESSAGES=10
263270

271+
# MultiversX
272+
MVX_PRIVATE_KEY= # Multiversx private key
273+
MVX_NETWORK= # must be one of mainnet, devnet, testnet
274+
275+
# NEAR
276+
NEAR_WALLET_SECRET_KEY=
277+
NEAR_WALLET_PUBLIC_KEY=
278+
NEAR_ADDRESS=
279+
SLIPPAGE=1
280+
RPC_URL=https://rpc.testnet.near.org
281+
NEAR_NETWORK=testnet # or mainnet
282+
283+
# ZKsync Era Configuration
284+
ZKSYNC_ADDRESS=
285+
ZKSYNC_PRIVATE_KEY=
286+
287+
# Ton
288+
TON_PRIVATE_KEY= # Ton Mnemonic Seed Phrase Join With Empty String
289+
TON_RPC_URL= # ton rpc
290+
264291
# AWS S3 Configuration Settings for File Upload
265292
AWS_ACCESS_KEY_ID=
266293
AWS_SECRET_ACCESS_KEY=
267294
AWS_REGION=
268295
AWS_S3_BUCKET=
269296
AWS_S3_UPLOAD_PATH=
270297

271-
272298
# Deepgram
273-
DEEPGRAM_API_KEY=
299+
DEEPGRAM_API_KEY=

‎.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
cache: "pnpm"
2121

2222
- name: Install dependencies
23-
run: pnpm install --no-frozen-lockfile
23+
run: pnpm install --frozen-lockfile
2424

2525
- name: Run Prettier
2626
run: pnpm run prettier --check .

0 commit comments

Comments
 (0)
Please sign in to comment.