-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvars.sh.sample
More file actions
50 lines (39 loc) · 1.71 KB
/
Copy pathvars.sh.sample
File metadata and controls
50 lines (39 loc) · 1.71 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
#!/bin/bash
# vars.sh: Example configuration for dynamic endpoints
# Which MODEL_n is main. Optional; defaults to the lowest configured n.
# A down endpoint automatically falls through to the next healthy one,
# so this only picks the preferred first choice.
# export DEFAULT_MODEL="MODEL_2"
# Optional per-endpoint model pin. Without it, the endpoint's first
# listed model is used — set this for multi-model endpoints (e.g. Gemini).
# export MODEL_NAME_3="gemini-2.5-pro"
# Official OpenAI (hermes) endpoint.
export MODEL_ENDPOINT_1="https://hermes.ai.unturf.com/v1"
export MODEL_API_KEY_1="your-hermes-api-key"
export MODEL_ENDPOINT_2="https://hermes2.ai.unturf.com/v1"
export MODEL_API_KEY_2="your-hermes-api-key"
# Google Gemini endpoint.
export MODEL_ENDPOINT_3="https://generativelanguage.googleapis.com/v1beta/openai"
export MODEL_API_KEY_3="your-google-api-key"
# Grok endpoint.
export MODEL_ENDPOINT_4="https://api.x.ai/v1"
export MODEL_API_KEY_4=""
# Groq endpoint.
export MODEL_ENDPOINT_5="https://api.groq.com/openai/v1"
export MODEL_API_KEY_5="gone"
# Together endpoint.
export MODEL_ENDPOINT_6="https://api.together.xyz/v1"
export MODEL_API_KEY_6="gone"
# OpenAI endpoint.
export MODEL_ENDPOINT_7="https://api.openai.com/v1"
export MODEL_API_KEY_7="gone"
export OPENAI_API_KEY="gone"
# MistralAI La Platform endpoint.
export MODEL_ENDPOINT_8="https://api.mistral.ai/v1"
export MODEL_API_KEY_8="gone"
# Anthropic Platform
export MODEL_ENDPOINT_9="https://api.anthropic.com/v1"
export MODEL_API_KEY_9="gone"
# Enable code-generated filenames (enabled by default: "true", disabled: "false")
# When enabled, uses Hermes AI to generate meaningful 1-3 word filenames for downloaded binaries
export ENABLE_CODE_GEN_FILENAMES="true"