JoachimVC commited on
Commit
cf24cdd
·
verified ·
1 Parent(s): 8de15cc

Delete .env

Browse files
Files changed (1) hide show
  1. .env +0 -56
.env DELETED
@@ -1,56 +0,0 @@
1
- # Agno Playground Environment Variables
2
- # ===========================================
3
- #
4
- # Instructions:
5
- # 1. Replace 'your_api_key_here' with your actual API keys
6
- # 2. Get your Mistral API key from: https://console.mistral.ai/
7
- # 3. Save this file and restart your terminal or source it
8
- # 4. Run: python test_agno_setup.py to verify setup
9
- # 5. Run: python start_playground.py to start the playground
10
-
11
- # REQUIRED: Mistral API Key
12
- # Get this from https://console.mistral.ai/
13
- MISTRAL_API_KEY=w3PJzUjk8rqOo1enzjdn8BQX8uas0DXv
14
-
15
- # OPTIONAL: Other API Keys (for future use)
16
- # OpenAI API Key (if you want to compare models)
17
- # OPENAI_API_KEY=your_openai_api_key_here
18
-
19
- # Anthropic API Key (if you want to compare models)
20
- # ANTHROPIC_API_KEY=your_anthropic_api_key_here
21
-
22
- # Exa API Key (for enhanced web search capabilities)
23
- # Get this from https://exa.ai/
24
- EXA_API_KEY=f0e7530a-f3e4-4835-9311-6e905a0becaf
25
-
26
- # Firecrawl API Key (for web scraping)
27
- # Get this from https://firecrawl.dev/
28
- FIRECRAWL_API_KEY=fc-dd6307b35b6046fc98b8cdc05a8183d1
29
-
30
- # Hugging Face API Token (for the assignment API)
31
- # Get this from https://huggingface.co/settings/tokens
32
- HF_ACCESS_TOKEN=hf_test_token_for_assignment
33
-
34
- # OPTIONAL: Configuration Settings
35
- # Default model to use (you can change this)
36
- DEFAULT_MISTRAL_MODEL=mistral-large-latest
37
-
38
- # Server configuration
39
- PLAYGROUND_HOST=0.0.0.0
40
- PLAYGROUND_PORT=8000
41
-
42
- # Logging level (DEBUG, INFO, WARNING, ERROR)
43
- LOG_LEVEL=INFO
44
-
45
- # ===========================================
46
- # After setting your API key:
47
- #
48
- # Linux/Mac users can source this file:
49
- # source .env
50
- #
51
- # Or export manually:
52
- # export MISTRAL_API_KEY=your_actual_key
53
- #
54
- # Windows users can set manually:
55
- # set MISTRAL_API_KEY=your_actual_key
56
- # ===========================================