-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
59 lines (49 loc) · 1.9 KB
/
.env.example
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
57
58
59
# =============================================================================
# PyComet Test Environment Variables
# =============================================================================
# IMPORTANT: These environment variables are ONLY for running tests!
# For actual application usage, configure your API keys in:
# ~/.config/pycomet/config.yaml
#
# To set up the test environment:
# 1. Copy this file to .env.test
# 2. Add your test API keys below
# 3. Never commit .env.test to version control
# =============================================================================
# Test API Keys for Different Providers
# ------------------------------------
# These keys are only used when running: uv run pytest tests/
# Google Gemini Test Key
TEST_GEMINI_API_KEY=your_test_key_here
# Anthropic Claude Test Key
TEST_ANTHROPIC_API_KEY=your_test_key_here
# OpenAI Test Key
TEST_OPENAI_API_KEY=your_test_key_here
# Groq Test Key
TEST_GROQ_API_KEY=your_test_key_here
# XAI (Grok-2) Test Key
TEST_XAI_API_KEY=your_test_key_here
# GitHub (Phi-3.5) Test Key
TEST_GITHUB_API_KEY=your_test_key_here
# OpenRouter Test Key
TEST_OPENROUTER_API_KEY=your_test_key_here
# Azure OpenAI Test Configuration
TEST_AZURE_API_KEY=your_test_key_here
TEST_AZURE_API_BASE=your_test_endpoint_here
TEST_AZURE_API_VERSION=2024-02-15-preview
TEST_AZURE_DEPLOYMENT_NAME=your_test_deployment_here
# =============================================================================
# REMINDER: Application Configuration
# =============================================================================
# For actual application usage, configure your API keys in:
# ~/.config/pycomet/config.yaml
#
# Example config.yaml:
# ai:
# provider: anthropic
# model: claude-3-sonnet-20240229
# api_key: your_actual_api_key
# commit:
# editor: nvim
# include_emoji: true
# =============================================================================