Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ ENCRYPTION_SECRET_HEX=3143246f44def075d40141fb849faffcf409fbbeb7a282a3a7c2f4396f
# ============================================================================
# REQUIRED: API Keys
# ============================================================================
# OpenAI-compatible provider (OpenAI or OpenRouter). Use your API key here.
# OpenRouter API configuration (recommended). Get your API key at https://openrouter.ai
# EMBEDDING_DIMENSIONS controls the embedding vector size used by RAG/vector search.
# When using custom embedding models or providers, you MUST set EMBEDDING_DIMENSIONS
# to match your vector store's configured dimension (for example, 3072 for
# text-embedding-3-large).
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_API_KEY=replace-with-your-key
OPENAI_MODEL=gpt-5-mini-2025-08-07
OPENAI_CODING_MODEL=gpt-5
OPENAI_EMBEDDING_MODEL=text-embedding-3-large
OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_API_KEY=your-openrouter-api-key
OPENAI_MODEL=x-ai/grok-4.1-fast
OPENAI_CODING_MODEL=x-ai/grok-4.1-fast
OPENAI_EMBEDDING_MODEL=openai/text-embedding-3-large
# EMBEDDING_DIMENSIONS=3072

# ============================================================================
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Get Tale running in 3 steps:
### 1. Prerequisites

- [Docker Desktop](https://www.docker.com/products/docker-desktop) (v24+)
- [OpenAI API Key](https://platform.openai.com/api-keys)
- [OpenRouter API Key](https://openrouter.ai)

### 2. Clone & Configure

Expand All @@ -21,10 +21,10 @@ cd tale
cp .env.example .env
```

Edit `.env` and add your OpenAI API key:
Edit `.env` and add your OpenRouter API key:

```bash
OPENAI_API_KEY=sk-your-key-here
OPENAI_API_KEY=your-openrouter-api-key
```

### 3. Launch
Expand Down
164 changes: 0 additions & 164 deletions docs/admin_setup.md

This file was deleted.

Loading