-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (33 loc) · 1.75 KB
/
.env.example
File metadata and controls
38 lines (33 loc) · 1.75 KB
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
34
35
36
37
38
# Agentic Code Optimization - Environment Variables Example
#
# Copy this file to .env and fill in your actual values
# DO NOT commit the .env file with real API keys to version control
# ============================================================================
# OpenAI Configuration
# ============================================================================
# Required if using OpenAI as the LLM provider
OPENAI_API_KEY=sk-your-actual-openai-api-key-here
OPENAI_ORGANIZATION_ID=org-your-organization-id-here
# ============================================================================
# Anthropic Claude Configuration
# ============================================================================
# Required if using Anthropic Claude as the LLM provider
ANTHROPIC_API_KEY=sk-ant-your-actual-anthropic-api-key-here
# ============================================================================
# Gemini Configuration
# ============================================================================
# Required if using Gemini as the LLM provider
GEMINI_API_KEY=your-actual-gemini-api-key-here
# ============================================================================
# LangSmith Configuration (Optional)
# ============================================================================
# Required if you want to enable monitoring with LangSmith
LANGSMITH_TRACING=true
LANGSMITH_ENDPOINT=https://api.smith.langchain.com
LANGSMITH_API_KEY=lsv2_your-actual-langsmith-api-key-here
LANGSMITH_PROJECT="Agentic Code Optimization"
# ============================================================================
# LangChain Debugging (Optional)
# ============================================================================
# Set to true to enable verbose logging
# LANGCHAIN_DEBUG=true