-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 733 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
OPENAI_MODEL_ID=gpt-4.1-nano
OPENAI_API_KEY=<str>
OLLAMA_MODEL_ID=llama3.2:3b#replace with your model
# OLLAMA_API_URL=http://localhost:11434
# Huggingface API Config
HUGGINGFACE_ACCESS_TOKEN=<str>
HUGGINGFACE_INFERENCE_MODEL_ID=ahmedshahriar/GhostWriterLlama-3.2-1B-DPO#replace with your model
# Comet ML (during training)
COMET_API_KEY=<str>
COMET_PROJECT=llmGhostWriter
# MongoDB Config
DATABASE_HOST=<str># mongodb://localhost:27017
DATABASE_NAME=ghost_db
# Qdrant Config
QDRANT_DATABASE_HOST=localhost
QDRANT_DATABASE_PORT=6333
# Qdrant Cloud Config
USE_QDRANT_CLOUD=true
QDRANT_CLOUD_URL=your_qdrant_cloud_url
QDRANT_APIKEY=your_qdrant_api_key
# uvicorn Config
UVICORN_HOST=0.0.0.0
UVICORN_PORT=80000
UVICORN_RELOAD=true