Skip to content

Commit 00dd784

Browse files
ivicacclaude
andcommitted
1570 Update environment variables doc with Ollama, Copilot docs embedding, and AWS chat memory variables
Add BYTECHEF_AI_PROVIDER_OLLAMA_{APIKEY,URL}, the Ollama embedding model, the Copilot docs embedding provider/key, and the AWS S3 chat-memory properties. Remove the stale BYTECHEF_AI_COPILOT_PROVIDER (property was deleted). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 6a3306b commit 00dd784

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

docs/content/docs/self-hosting/configuration/environment-variables.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ ByteChef can be configured using environment variables. This page documents all
1010
| Environment Variable | Description | Default Value |
1111
|---|---|---|
1212
| `BYTECHEF_AI_COPILOT_ENABLED` | Enable or disable the AI copilot feature | `false` |
13-
| `BYTECHEF_AI_COPILOT_PROVIDER` | The AI provider to use for copilot (OPENAI, ANTHROPIC) | `ANTHROPIC` |
13+
| `BYTECHEF_AI_COPILOT_DOCS_EMBEDDING_PROVIDER` | Embedding provider for the Copilot documentation index (OLLAMA, OPENAI) | - |
14+
| `BYTECHEF_AI_COPILOT_DOCS_EMBEDDING_APIKEY` | API key for the Copilot documentation embedding provider — OpenAI only; Ollama runs locally and needs none (sensitive) | - |
1415

1516
## AI Firecrawl Configuration
1617

@@ -41,6 +42,11 @@ ByteChef can be configured using environment variables. This page documents all
4142
| Environment Variable | Description | Default Value |
4243
|---|---|---|
4344
| `BYTECHEF_AI_MEMORY_PROVIDER` | Memory storage provider for chat-style interactions (AWS, IN_MEMORY, JDBC, REDIS) | `JDBC` |
45+
| `BYTECHEF_AI_MEMORY_AWS_BUCKETPREFIX` | Prefix used to derive the per-tenant S3 bucket name (provider `AWS`) | `bytechef-chat-memory` |
46+
| `BYTECHEF_AI_MEMORY_AWS_REGION` | AWS region for S3-backed chat memory (provider `AWS`) | - |
47+
| `BYTECHEF_AI_MEMORY_AWS_ACCESSKEYID` | AWS access key ID for S3-backed chat memory (sensitive) | - |
48+
| `BYTECHEF_AI_MEMORY_AWS_SECRETACCESSKEY` | AWS secret access key for S3-backed chat memory (sensitive) | - |
49+
| `BYTECHEF_AI_MEMORY_AWS_KEYPREFIX` | Key prefix prepended to every stored object key (provider `AWS`) | - |
4450

4551
## AI Provider API Keys
4652

@@ -52,6 +58,8 @@ ByteChef can be configured using environment variables. This page documents all
5258
| `BYTECHEF_AI_PROVIDER_GROQ_APIKEY` | Groq API key (sensitive) | - |
5359
| `BYTECHEF_AI_PROVIDER_MISTRAL_APIKEY` | Mistral API key (sensitive) | - |
5460
| `BYTECHEF_AI_PROVIDER_NVIDIA_APIKEY` | NVIDIA API key (sensitive) | - |
61+
| `BYTECHEF_AI_PROVIDER_OLLAMA_APIKEY` | Ollama API key (sensitive) | - |
62+
| `BYTECHEF_AI_PROVIDER_OLLAMA_URL` | Ollama server base URL; fallback for chat and embedding models (defaults to `http://localhost:11434` when blank) | - |
5563
| `BYTECHEF_AI_PROVIDER_OPENAI_APIKEY` | OpenAI API key (sensitive) | - |
5664
| `BYTECHEF_AI_PROVIDER_PERPLEXITY_APIKEY` | Perplexity API key (sensitive) | - |
5765
| `BYTECHEF_AI_PROVIDER_STABILITY_APIKEY` | Stability API key (sensitive) | - |
@@ -72,6 +80,7 @@ ByteChef can be configured using environment variables. This page documents all
7280

7381
| Environment Variable | Description | Default Value |
7482
|---|---|---|
83+
| `BYTECHEF_AI_PROVIDER_EMBEDDING_OLLAMA_OPTIONS_MODEL` | Ollama embedding model name | `qwen3-embedding:8b` |
7584
| `BYTECHEF_AI_PROVIDER_EMBEDDING_OPENAI_OPTIONS_MODEL` | OpenAI embedding model name | `text-embedding-3-small` |
7685

7786
## AI Vectorstore Configuration

0 commit comments

Comments
 (0)