Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Environment Variables Template
# Copy this file to .env and fill in your values

# OpenAI API Key (for LLM explanations)
OPENAI_API_KEY=your-api-key-here

# Alternative LLM Providers (optional)
# GOOGLE_API_KEY=your-gemini-key-here
# ANTHROPIC_API_KEY=your-claude-key-here

# Agent Configuration (optional - defaults in code)
# ALERT_RULES_PRESET=moderate # conservative, moderate, aggressive
# PRICE_DROP_THRESHOLD=4.0
# PRICE_SPIKE_THRESHOLD=5.0
# VOLATILITY_THRESHOLD=0.03
73 changes: 73 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual Environments
venv/
env/
ENV/
.venv

# Jupyter Notebook
.ipynb_checkpoints
*.ipynb_checkpoints

# Environment Variables
.env
.env.local

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Project Specific
outputs/*.csv
outputs/*.json
outputs/*.txt
!outputs/.gitkeep

# API Keys
*.key
*.pem

# Logs
*.log
logs/

# Data (if large)
# data/*.csv
# !data/sample_stock_data.csv

# Model artifacts
models/*.pkl
models/*.joblib

# Temporary files
tmp/
temp/
*.tmp
Loading