annabossler commited on
Commit
ef18c90
·
1 Parent(s): ab88576

Add .env.example template for Neo4j configuration from Ana, the one who loves border collies

Browse files
Files changed (1) hide show
  1. .env.example +11 -45
.env.example CHANGED
@@ -1,48 +1,14 @@
1
- # ============== LLM CONFIGURATION ==============
 
2
 
3
- # Provider: "openai" or "anthropic"
4
- LLM_PROVIDER=openai
5
 
6
- # API Keys (at least one required for full LLM analysis)
7
- OPENAI_API_KEY=sk-your-key-here
8
- ANTHROPIC_API_KEY=sk-ant-your-key-here
9
 
10
- # Model names (optional - sensible defaults set in config.py)
11
- # ANTHROPIC_MODEL=claude-sonnet-4-5-20250929
12
- # OPENAI_MODEL=gpt-5.1
13
-
14
- # ============== EMBEDDINGS ==============
15
-
16
- # OpenAI Embedding Model (used if LLM_PROVIDER is openai and performing RAG/Embeddings)
17
- OPENAI_EMBEDDING_MODEL=text-embedding-3-small
18
-
19
- # Local Embedding Model (used for local/offline embeddings)
20
- LOCAL_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
21
-
22
- # ============== HUGGINGFACE (FREE TIER) ==============
23
-
24
- # HuggingFace Token - enables Llama 3.1 (best quality free model)
25
- # Get yours at: https://huggingface.co/settings/tokens
26
- #
27
- # WITHOUT HF_TOKEN: Falls back to ungated models (zephyr-7b-beta)
28
- # WITH HF_TOKEN: Uses Llama 3.1 8B Instruct (requires accepting license)
29
- #
30
- # For HuggingFace Spaces deployment:
31
- # Set this as a "Secret" in Space Settings -> Variables and secrets
32
- # Users/judges don't need their own token - the Space secret is used
33
- #
34
- HF_TOKEN=hf_your-token-here
35
-
36
- # ============== AGENT CONFIGURATION ==============
37
-
38
- MAX_ITERATIONS=10
39
- SEARCH_TIMEOUT=30
40
- LOG_LEVEL=INFO
41
-
42
- # ============== EXTERNAL SERVICES ==============
43
-
44
- # PubMed (optional - higher rate limits)
45
- NCBI_API_KEY=your-ncbi-key-here
46
-
47
- # Vector Database (optional - for LlamaIndex RAG)
48
- CHROMA_DB_PATH=./chroma_db
 
1
+ # HuggingFace
2
+ HF_TOKEN=your_huggingface_token_here
3
 
4
+ # OpenAI (optional)
5
+ OPENAI_API_KEY=your_openai_key_here
6
 
7
+ # Anthropic (optional)
8
+ ANTHROPIC_API_KEY=your_anthropic_key_here
 
9
 
10
+ # Neo4j Knowledge Graph
11
+ NEO4J_URI=bolt://localhost:7687
12
+ NEO4J_USER=neo4j
13
+ NEO4J_PASSWORD=your_neo4j_password_here
14
+ NEO4J_DATABASE=your_database_name