muthuk1 commited on
Commit
64ddd46
Β·
verified Β·
1 Parent(s): a60c61c

Add .env.example

Browse files
Files changed (1) hide show
  1. .env.example +19 -0
.env.example ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment variables for GraphRAG Inference Hackathon
2
+ # Copy to .env and fill in your values
3
+
4
+ # ──── OpenAI API ────────────────────────────────────
5
+ OPENAI_API_KEY=your-openai-api-key-here
6
+ LLM_MODEL=gpt-4o-mini
7
+ EMBED_MODEL=text-embedding-3-small
8
+
9
+ # ──── TigerGraph Cloud ──────────────────────────────
10
+ # Sign up at https://tgcloud.io (free tier available)
11
+ TG_HOST=https://YOUR_SUBDOMAIN.tgcloud.io
12
+ TG_GRAPH=GraphRAG
13
+ TG_USERNAME=tigergraph
14
+ TG_PASSWORD=your-tigergraph-password
15
+ TG_TOKEN=
16
+
17
+ # ──── Dashboard ─────────────────────────────────────
18
+ DASHBOARD_PORT=7860
19
+ DEBUG=false