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
16 changes: 16 additions & 0 deletions ttd-dr-ts/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# TTD-DR Environment Variables
# Copy this file to .env and fill in your API keys

# OpenAI API Key (for GPT-4, GPT-3.5, etc.)
OPENAI_API_KEY=your_openai_api_key_here

# Anthropic API Key (for Claude models)
ANTHROPIC_API_KEY=your_anthropic_api_key_here

# SerpAPI Key (for enhanced web search)
# Get your key from https://serpapi.com
SERPAPI_API_KEY=your_serpapi_api_key_here

# Optional: Set your preferred provider
# LLM_PROVIDER=openai
# LLM_MODEL=gpt-4
44 changes: 44 additions & 0 deletions ttd-dr-ts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# TypeScript
dist/
*.js
*.d.ts
*.js.map
*.d.ts.map

# But keep the config
!tsconfig.json

# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
yarn.lock

# Environment Variables
.env
.env.local
.env.*.local

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

# Output
output/
*.log
ttd-dr.log

# Testing
coverage/
.nyc_output/

# Temporary files
*.tmp
*.temp
.cache/
Loading