bytical-2d-talk / .env.example
piyushptiwari's picture
Upload .env.example with huggingface_hub
2788bbc verified
Raw
History Blame Contribute Delete
778 Bytes
# bytical-talk — smart-AI layer configuration (copy to .env and fill in)
# NEVER commit the real .env. Only this template is tracked.
# ---- LLM / embedding provider: "azure" (default) or "openai" ----
BYTICAL_LLM_PROVIDER=azure
# ---- Azure OpenAI (used when provider=azure) ----
AZURE_OPENAI_ENDPOINT=https://<your-resource>.openai.azure.com/
AZURE_OPENAI_API_KEY=<your-key>
AZURE_API_VERSION=2025-01-01-preview
AZURE_DEPLOYMENT_NAME=gpt-4o-mini
AZURE_EMBEDDING_MODEL_NAME=text-embedding-3-small
# ---- Generic OpenAI-compatible (used when provider=openai) ----
# Works for OpenAI, Azure AI Foundry (v1 endpoint), local vLLM, etc.
OPENAI_API_KEY=<your-key>
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_CHAT_MODEL=gpt-4o-mini
OPENAI_EMBED_MODEL=text-embedding-3-small