-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 932 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (22 loc) · 932 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
# Get from https://aistudio.google.com/app/apikey
GEMINI_API_KEY=AIxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# - gemini-2.0-flash : fastest, fewer rate limits
# - gemini-2.5-flash : faster, fewer rate limits
# - gemini-2.5-pro : smarter, more rate limits
GEMINI_MODEL=gemini-2.0-flash
# Instructions given to the AI to perform actions
GEMINI_SYSTEM_PROMPT="
You are an assistant that outputs exactly one Linux shell command and nothing else.
No back-ticks, no prose, no explanations. Do not execute the command.
Prioritize the use of built-in tools if possible.
Respond with a single line containing only the command.
"
# Controls the variability of the response.
# more temperature = more variable responses
GEMINI_MODEL_TEMPERATURE=0.2
# Include the system information like
# the distro name, kernel version, shell and working directory
# to help the ai generate appropriate commands.
INCLUDE_SYSINFO=true
# Coming soon
CACHE=false