-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path.env.integration.example
More file actions
56 lines (45 loc) · 1.88 KB
/
Copy path.env.integration.example
File metadata and controls
56 lines (45 loc) · 1.88 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Speech Service Integration Testing Credentials
# Copy this file to .env.integration and fill in your real API credentials
# OpenAI Speech Service
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=sk-...
# optional
OPENAI_API_BASE=https://api.openai.com/v1
OPENAI_ORGANIZATION=org-...
# AWS Polly
# Get credentials from AWS IAM: https://console.aws.amazon.com/iam/
AWS_ACCESS_KEY_ID=AKIA...
AWS_SECRET_ACCESS_KEY=...
AWS_REGION=us-east-1
# Azure Cognitive Services Speech
# Get credentials from: https://portal.azure.com/
AZURE_SPEECH_KEY=...
AZURE_SPEECH_REGION=eastus
# ===== LLM Provider Integration Testing =====
# Credentials for testing LLM providers with real API calls
# Anthropic (Claude)
# Get your API key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=sk-ant-...
# Google Gemini
# Get your API key from: https://aistudio.google.com/app/apikey
GOOGLE_API_KEY=...
# Google Vertex AI
# Get service account credentials from: https://console.cloud.google.com/iam-admin/serviceaccounts
# The credentials should be a JSON string containing your service account key
GOOGLE_VERTEX_AI_CREDENTIALS_JSON='{"type":"service_account","project_id":"...","private_key_id":"...","private_key":"...","client_email":"...","client_id":"...","auth_uri":"...","token_uri":"...","auth_provider_x509_cert_url":"...","client_x509_cert_url":"..."}'
GOOGLE_VERTEX_AI_LOCATION=global
GOOGLE_VERTEX_AI_API_TRANSPORT=grpc
# DeepSeek
# Get your API key from: https://platform.deepseek.com/api_keys
DEEPSEEK_API_KEY=...
# Azure OpenAI
# Get credentials from: https://portal.azure.com/
AZURE_OPENAI_API_KEY=...
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_VERSION=2024-02-15-preview
# Groq
# Get your API key from: https://console.groq.com/keys
GROQ_API_KEY=...
# Perplexity
# Get your API key from: https://www.perplexity.ai/settings/api
PERPLEXITY_API_KEY=...