-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy path.env.example
More file actions
41 lines (36 loc) · 1.42 KB
/
.env.example
File metadata and controls
41 lines (36 loc) · 1.42 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
# Android Action Kernel Configuration
# Copy this file to .env and fill in your settings
# cp .env.example .env
# ===========================================
# Agent Configuration
# ===========================================
MAX_STEPS=10 # Maximum steps before stopping
STEP_DELAY=2 # Seconds to wait between steps
# ===========================================
# LLM Provider: "groq", "openai", or "bedrock"
# ===========================================
LLM_PROVIDER=groq
# ===========================================
# Groq Configuration (Free tier available)
# Get your key at: https://console.groq.com
# ===========================================
GROQ_API_KEY=gsk_your_key_here
GROQ_MODEL=llama-3.3-70b-versatile
# Other models: llama-3.1-8b-instant (faster, higher rate limits)
# ===========================================
# OpenAI Configuration
# Get your key at: https://platform.openai.com
# ===========================================
OPENAI_API_KEY=sk-your_key_here
OPENAI_MODEL=gpt-4o
# Other models: gpt-4o-mini (faster, cheaper)
# ===========================================
# AWS Bedrock Configuration
# Uses AWS credential chain (run 'aws configure' first)
# ===========================================
AWS_REGION=us-east-1
BEDROCK_MODEL=us.meta.llama3-3-70b-instruct-v1:0
# Other models:
# anthropic.claude-3-sonnet-20240229-v1:0
# anthropic.claude-3-haiku-20240307-v1:0
# meta.llama3-8b-instruct-v1:0