37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
#!/bin/bash
|
|
# vars.sh: Example configuration for dynamic endpoints
|
|
|
|
# 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"
|