-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
33 lines (25 loc) · 916 Bytes
/
.env.example
File metadata and controls
33 lines (25 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# CookingAgent Environment Variables
# OpenAI API Key for LLM-based recipe tagging and agent functions
# Get this from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# OpenAI API Base URL (optional, defaults to https://api.openai.com/v1)
# Set this if using custom endpoints, proxies, or OpenAI-compatible APIs
OPENAI_BASE_URL=https://api.openai.com/v1
# Model configuration
OPENAI_MODEL=gpt-3.5-turbo
OPENAI_TEMPERATURE=0.3
OPENAI_MAX_TOKENS=2048
# Data processing configuration
MAX_CONCURRENT_REQUESTS=5
REQUEST_DELAY_MS=1000
BATCH_SIZE=10
# Agent-specific model settings
INTENT_EXTRACTION_MODEL=gpt-3.5-turbo
INTENT_EXTRACTION_TEMPERATURE=0.2
MENU_RECOMMENDATION_MODEL=gpt-4
MENU_RECOMMENDATION_TEMPERATURE=0.4
WORKFLOW_PLANNING_MODEL=gpt-3.5-turbo
WORKFLOW_PLANNING_TEMPERATURE=0.3
# Recipe tagging settings
RECIPE_TAGGING_MODEL=gpt-3.5-turbo
RECIPE_TAGGING_TEMPERATURE=0.3