Skip to content

Commit fd1da68

Browse files
committed
Update .gitignore to include .env, logs, and results; fix video display in README
1 parent e95ce84 commit fd1da68

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

.env

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ __pycache__/
77
.pytest_cache/
88

99
# Virtual environments
10-
.env
1110
.venv/
1211
env/
1312
venv/
@@ -20,8 +19,6 @@ venv/
2019
.DS_Store
2120

2221
# Project-specific
23-
logs/
24-
results/
2522
.cache/
2623
cache/
2724
huggingface/

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@
4040
Watch 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

logs/.gitkeep

Whitespace-only changes.

results/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)