File tree Expand file tree Collapse file tree 5 files changed +32
-6
lines changed
Expand file tree Collapse file tree 5 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 1+ # Environment Variables for launch_multiagent.py
2+ # Copy this file to .env and fill in your API keys
3+
4+ # Required API Keys based on model usage in create_model() function:
5+
6+ # For Claude models
7+ ANTHROPIC_API_KEY = your_anthropic_api_key_here
8+
9+ # For OpenAI models
10+ OPENAI_API_KEY = your_openai_api_key_here
11+
12+ # For Google Gemini models (e.g., gemini-2.5-flash)
13+ GOOGLE_API_KEY = your_google_api_key_here
14+ GEMINI_API_KEY = your_google_api_key_here
15+
16+ # For HuggingFace dataset access (required for run_experimental_tool for dataset access)
17+ HF_TOKEN = your_huggingface_token_here
18+
19+ # Redirect HuggingFace cache to project directory (.cache folder should be in the repo)
20+ HF_HOME = .cache/huggingface
21+ TRANSFORMERS_CACHE = .cache/huggingface/transformers
22+ HF_DATASETS_CACHE = .cache/huggingface/datasets
23+
24+ # For web search functionality (optional, only required if using OpenDeepSearchTool)
25+ SERPER_API_KEY = your_serper_api_key_here
26+
27+
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ __pycache__/
77.pytest_cache /
88
99# Virtual environments
10- .env
1110.venv /
1211env /
1312venv /
2019.DS_Store
2120
2221# Project-specific
23- logs /
24- results /
2522.cache /
2623cache /
2724huggingface /
Original file line number Diff line number Diff line change 4040Watch how freephdlabor transforms a research idea into a complete paper:
4141
4242<p align =" center " >
43- <video width =" 700 " controls >
44- <source src="assets/preview.mp4" type="video/mp4">
45- </video >
43+ <a href =" assets/preview.mp4 " >
44+ <img src="assets/features.png" alt="Click to watch demo video" width="700">
45+ </a >
46+ <br >
47+ <em >👆 Click the image above to watch the demo video</em >
4648</p >
4749
4850### What Makes It Different
You can’t perform that action at this time.
0 commit comments