add api cards
Release / release (push) Canceled after 0s
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Canceled after 0s
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Canceled after 0s
Python CI / Format Backend (3.11.x) (push) Canceled after 0s
Python CI / Format Backend (3.12.x) (push) Canceled after 0s
Frontend Build / Format & Build Frontend (push) Canceled after 0s
Frontend Build / Frontend Unit Tests (push) Canceled after 0s
Release to PyPI / release (push) Canceled after 0s
Create and publish Docker images with specific build args / merge-main-images (push) Canceled after 0s
Create and publish Docker images with specific build args / merge-cuda-images (push) Canceled after 0s
Create and publish Docker images with specific build args / merge-cuda126-images (push) Canceled after 0s
Create and publish Docker images with specific build args / merge-ollama-images (push) Canceled after 0s
Create and publish Docker images with specific build args / merge-slim-images (push) Canceled after 0s
Create and publish Docker images with specific build args / copy-to-dockerhub (, main) (push) Canceled after 0s
Create and publish Docker images with specific build args / copy-to-dockerhub (-cuda, cuda) (push) Canceled after 0s
Create and publish Docker images with specific build args / copy-to-dockerhub (-cuda126, cuda126) (push) Canceled after 0s
Create and publish Docker images with specific build args / copy-to-dockerhub (-ollama, ollama) (push) Canceled after 0s
Create and publish Docker images with specific build args / copy-to-dockerhub (-slim, slim) (push) Canceled after 0s

This commit is contained in:
emil28092005
2026-04-27 05:13:31 +03:00
parent 8dae237a0b
commit 89ea167d0d
8 changed files with 729 additions and 0 deletions
+150
View File
@@ -0,0 +1,150 @@
# Open WebUI - Agent Instructions
## Quick Commands
```bash
# Frontend
npm install # Install dependencies
npm run pyodide:fetch # Required! Fetch Pyodide before dev
npm run dev # Dev server (port 5173)
npm run dev:5050 # Alternative dev server (port 5050)
npm run build # Build frontend
npm run test:frontend # Run vitest
npm run check # Typecheck (one-time)
npm run check:watch # Typecheck (watch mode)
npm run lint:frontend # ESLint frontend
npm run format # Prettier (frontend)
# Backend
./backend/dev.sh # Dev server (port 8080)
uvicorn open_webui.main:app # Manual backend start
npm run lint:backend # Pylint backend
npm run format:backend # Ruff format backend
pytest # Backend tests (from backend/open_webui/)
# Full stack
npm run lint # Full lint (frontend + types + backend)
npm run format # Full format
# Docker
docker run -d -p 3000:8080 -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main
```
## Critical Constraints
**Python:** 3.11 or 3.12 only (NOT 3.13+)
**Node:** 18.13.0 - 22.x.x (enforced in package.json)
**Pyodide:** MUST fetch first (`npm run pyodide:fetch`) - required for code interpreter
## Architecture
**Monorepo:** SvelteKit frontend + FastAPI backend
- **Frontend (`/src`)**: Svelte 5, SvelteKit, Vite
- Components: `/src/lib/components`
- API clients: `/src/lib/apis`
- Stores: `/src/lib/stores`
- Utils: `/src/lib/utils`
- **Backend (`/backend/open_webui`)**: FastAPI, SQLAlchemy
- Routers: `/backend/open_webui/routers`
- Models: `/backend/open_webui/models`
- Utils: `/backend/open_webui/utils`
- Config: `/backend/open_webui/config.py`
- Migrations: `/backend/open_webui/migrations/`
## Key Development Patterns
**Adding a new API endpoint:**
1. Define Pydantic model in `backend/open_webui/routers/` (e.g., `configs.py`, `openai.py`)
2. Add `@router` decorator function
3. Import router in `backend/open_webui/main.py` via `app.include_router()`
4. Create frontend client in `/src/lib/apis/`
**Adding a new model/preset:**
- Admin Panel → Settings → Models → Create Model
- Or `/backend/open_webui/models/models.py` schema
**Adding translations:**
1. Add key to translation files (e.g., `/src/locales/en.json`)
2. Run `npm run i18n:parse` to sync
3. Use `$t('key')` in templates
**Adding a new UI component:**
- Create in `/src/lib/components/` structure matching parent
- Use Svelte 5 runes (`$state`, `$derived`, `$effect`)
- Export types in `/src/lib/types.ts`
## Environment Variables
**Required defaults (auto-generated if not set):**
- `OLLAMA_BASE_URL='http://localhost:11434'`
- `OPENAI_API_BASE_URL=''`
- `OPENAI_API_KEY=''`
- `CORS_ALLOW_ORIGIN='*'`
- `FORWARDED_ALLOW_IPS='*'`
**Critical for Docker:**
- `--add-host=host.docker.internal:host-gateway` (macOS/Linux - required for container → host communication)
- `-v open-webui:/app/backend/data` (persist webui.db)
## Testing
- **Unit tests (frontend):** `npm run test:frontend` (vitest)
- **E2E tests:** `npm run cy:open` (Cypress UI)
- **Backend tests:** `pytest` from `/backend/open_webui/test/`
- Note: Integration tests may require running services (Ollama, vector DBs)
## Formatting / Linting
**Pre-commit hooks:** ruff (fix) + ruff-format (backend only)
```bash
# Full format
npm run format # Frontend (prettier)
npm run format:backend # Backend (ruff format)
# Full lint
npm run lint:frontend # ESLint
npm run lint:backend # Pylint
npm run check # Typecheck
```
## Migrations
SQLite default (webui.db). PostgreSQL/MySQL supported.
```bash
# After code change affecting DB schema
cd backend/open_webui
DATABASE_URL=sqlite:///webui.db alembic revision --autogenerate -m "description"
```
## Known Gotchas
1. **pyodide:fetch not run** → Code interpreter fails silently
2. **Docker on macOS** → Missing `--add-host=host.docker.internal:host-gateway` → Backend cannot reach Ollama
3. **Python 3.13+** → Dependencies incompatible
4. **OpenAI URLs trailing slash** → Normalize with `.rstrip('/')` before use
5. **Custom API endpoints** → Use backend proxy for credentials security (see `back/open_webui/routers/configs.py` line 709)
## File Ownership
| Directory | Purpose |
|-----------|---------|
| `/backend/open_webui/routers` | API endpoints |
| `/backend/open_webui/models` | Pydantic + SQLAlchemy models |
| `/backend/open_webui/models/*.py` | DB schemas (ChatModel, UserModel, etc.) |
| `/backend/open_webui/config.py` | Persistent config (OPENAI_API_BASE_URLS, etc.) |
| `/src/lib/apis/*` | Frontend API clients |
| `/src/lib/components` | Svelte components |
| `/src/lib/stores` | Svelte stores |
| `/cypress/e2e` | E2E test specs |
| `/scripts` | Dev scripts |
## CI Workflows
- `docker-build.yaml` → Multi-platform Docker images
- `build-release.yml` → Release trigger (package.json change)
- `format-backend.yaml` → Python formatting (ruff) on backend changes
- `format-build-frontend.yaml` → Frontend format + build + vitest
+10
View File
@@ -1209,6 +1209,16 @@ TERMINAL_SERVER_CONNECTIONS = PersistentConfig(
terminal_server_connections,
)
####################################
# CUSTOM API ENDPOINTS
####################################
CUSTOM_API_ENDPOINTS = PersistentConfig(
'CUSTOM_API_ENDPOINTS',
'custom_api.endpoints',
[],
)
####################################
# WEBUI
####################################
+99
View File
@@ -662,3 +662,102 @@ async def get_banners(
user=Depends(get_verified_user),
):
return request.app.state.config.BANNERS
############################
# Custom API Endpoints Config
############################
class CustomApiEndpoint(BaseModel):
id: str
name: str
connection_idx: int
path: str
method: Optional[str] = 'GET'
refresh_interval: Optional[int] = 60
enabled: Optional[bool] = True
model_config = ConfigDict(extra='allow')
class CustomApiEndpointsConfigForm(BaseModel):
CUSTOM_API_ENDPOINTS: list[CustomApiEndpoint]
@router.get('/custom_api_endpoints', response_model=CustomApiEndpointsConfigForm)
async def get_custom_api_endpoints_config(request: Request, user=Depends(get_verified_user)):
return {
'CUSTOM_API_ENDPOINTS': request.app.state.config.CUSTOM_API_ENDPOINTS,
}
@router.post('/custom_api_endpoints', response_model=CustomApiEndpointsConfigForm)
async def set_custom_api_endpoints_config(
request: Request,
form_data: CustomApiEndpointsConfigForm,
user=Depends(get_admin_user),
):
request.app.state.config.CUSTOM_API_ENDPOINTS = [
endpoint.model_dump() for endpoint in form_data.CUSTOM_API_ENDPOINTS
]
return {
'CUSTOM_API_ENDPOINTS': request.app.state.config.CUSTOM_API_ENDPOINTS,
}
@router.post('/custom_api_endpoints/execute')
async def execute_custom_api_endpoint(
request: Request,
endpoint_id: str,
user=Depends(get_verified_user),
):
endpoints = request.app.state.config.CUSTOM_API_ENDPOINTS
endpoint = next((e for e in endpoints if e.get('id') == endpoint_id), None)
if not endpoint:
raise HTTPException(status_code=404, detail='Custom API endpoint not found')
if not endpoint.get('enabled', True):
raise HTTPException(status_code=403, detail='Custom API endpoint is disabled')
connection_idx = endpoint.get('connection_idx', 0)
openai_base_urls = request.app.state.config.OPENAI_API_BASE_URLS
openai_keys = request.app.state.config.OPENAI_API_KEYS
openai_configs = request.app.state.config.OPENAI_API_CONFIGS
if connection_idx >= len(openai_base_urls):
raise HTTPException(status_code=400, detail='Connection index out of range')
base_url = openai_base_urls[connection_idx].rstrip('/')
key = openai_keys[connection_idx] if connection_idx < len(openai_keys) else ''
config = openai_configs.get(str(connection_idx), {})
url = f"{base_url}{endpoint['path']}"
method = endpoint.get('method', 'GET').upper()
headers = {
'Content-Type': 'application/json',
**({'Authorization': f'Bearer {key}'} if key else {}),
}
if config.get('headers') and isinstance(config.get('headers'), dict):
headers = {**headers, **config.get('headers')}
try:
async with aiohttp.ClientSession(
trust_env=True,
timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT),
) as session:
async with session.request(
method, url, headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL
) as resp:
try:
data = await resp.json()
except Exception:
data = {'text': await resp.text()}
return {
'status': resp.status,
'data': data,
}
except Exception as e:
log.debug(f'Failed to execute custom API endpoint: {e}')
raise HTTPException(status_code=400, detail='Failed to execute custom API endpoint')
+19
View File
@@ -0,0 +1,19 @@
services:
open-webui:
build:
context: .
dockerfile: Dockerfile
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
volumes:
- open-webui:/app/backend/data
ports:
- ${OPEN_WEBUI_PORT-3000}:8080
environment:
- OPENAI_API_BASE_URL=${OPENAI_API_BASE_URL:-https://api.openai.com/v1}
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
- WEBUI_SECRET_KEY=
restart: unless-stopped
volumes:
open-webui: {}
+97
View File
@@ -647,3 +647,100 @@ export const setBanners = async (token: string, banners: Banner[]) => {
return res;
};
export type CustomApiEndpoint = {
id: string;
name: string;
connection_idx: number;
path: string;
method?: string;
refresh_interval?: number;
enabled?: boolean;
};
export const getCustomApiEndpoints = async (token: string) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/custom_api_endpoints`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.error(err);
error = err.detail;
return null;
});
if (error) {
throw error;
}
return res?.CUSTOM_API_ENDPOINTS ?? [];
};
export const setCustomApiEndpoints = async (token: string, endpoints: CustomApiEndpoint[]) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/custom_api_endpoints`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
CUSTOM_API_ENDPOINTS: endpoints
})
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.error(err);
error = err.detail;
return null;
});
if (error) {
throw error;
}
return res;
};
export const executeCustomApiEndpoint = async (token: string, endpointId: string) => {
let error = null;
const res = await fetch(
`${WEBUI_API_BASE_URL}/configs/custom_api_endpoints/execute?endpoint_id=${encodeURIComponent(endpointId)}`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
}
}
)
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.error(err);
error = err.detail;
return null;
});
if (error) {
throw error;
}
return res;
};
+4
View File
@@ -103,6 +103,7 @@
import EventConfirmDialog from '../common/ConfirmDialog.svelte';
import Placeholder from './Placeholder.svelte';
import FilesOverlay from './MessageInput/FilesOverlay.svelte';
import CustomApiEndpointCards from './CustomApiEndpointCards.svelte';
import NotificationToast from '../NotificationToast.svelte';
import Spinner from '../common/Spinner.svelte';
import Tooltip from '../common/Tooltip.svelte';
@@ -2913,6 +2914,9 @@
}}
>
<div class=" h-full w-full flex flex-col">
<div class="w-full px-4 pt-4">
<CustomApiEndpointCards />
</div>
<Messages
chatId={$chatId}
bind:history
@@ -0,0 +1,345 @@
<script lang="ts">
import { onMount, onDestroy, getContext, createEventDispatcher } from 'svelte';
import { fade } from 'svelte/transition';
import { toast } from 'svelte-sonner';
import {
executeCustomApiEndpoint,
getCustomApiEndpoints,
setCustomApiEndpoints,
type CustomApiEndpoint
} from '$lib/apis/configs';
import { getOpenAIConfig } from '$lib/apis/openai';
import Tooltip from '$lib/components/common/Tooltip.svelte';
import Spinner from '$lib/components/common/Spinner.svelte';
const i18n = getContext('i18n');
const dispatch = createEventDispatcher();
let endpoints: CustomApiEndpoint[] = [];
let openaiUrls: string[] = [];
let results: Record<string, any> = {};
let loading: Record<string, boolean> = {};
let intervals: Record<string, ReturnType<typeof setInterval>> = {};
let showManage = false;
let editing: CustomApiEndpoint | null = null;
// Form fields
let formName = '';
let formConnectionIdx = 0;
let formPath = '';
let formMethod = 'GET';
let formRefresh = 60;
const fetchEndpoints = async () => {
try {
endpoints = await getCustomApiEndpoints(localStorage.token);
} catch (e) {
console.error(e);
}
};
const fetchUrls = async () => {
try {
const cfg = await getOpenAIConfig(localStorage.token);
openaiUrls = cfg?.OPENAI_API_BASE_URLS ?? [];
} catch (e) {
console.error(e);
}
};
const execute = async (ep: CustomApiEndpoint) => {
if (!ep.enabled) return;
loading[ep.id] = true;
try {
const res = await executeCustomApiEndpoint(localStorage.token, ep.id);
results[ep.id] = res;
} catch (e: any) {
results[ep.id] = { error: e?.detail || e?.message || 'Error' };
}
loading[ep.id] = false;
};
const startIntervals = () => {
stopIntervals();
for (const ep of endpoints) {
if (!ep.enabled) continue;
execute(ep);
const ms = (ep.refresh_interval || 60) * 1000;
intervals[ep.id] = setInterval(() => execute(ep), ms);
}
};
const stopIntervals = () => {
Object.values(intervals).forEach(clearInterval);
intervals = {};
};
const openManage = async () => {
await fetchEndpoints();
await fetchUrls();
editing = null;
resetForm();
showManage = true;
};
const resetForm = () => {
formName = '';
formConnectionIdx = 0;
formPath = '';
formMethod = 'GET';
formRefresh = 60;
};
const editEndpoint = (ep: CustomApiEndpoint) => {
editing = ep;
formName = ep.name;
formConnectionIdx = ep.connection_idx;
formPath = ep.path;
formMethod = ep.method || 'GET';
formRefresh = ep.refresh_interval || 60;
};
const saveEndpoint = async () => {
if (!formName.trim() || !formPath.trim()) {
toast.error('Name and path are required');
return;
}
let list = [...endpoints];
const payload: CustomApiEndpoint = {
id: editing?.id || crypto.randomUUID(),
name: formName.trim(),
connection_idx: Number(formConnectionIdx),
path: formPath.trim(),
method: formMethod,
refresh_interval: Number(formRefresh),
enabled: true
};
if (editing) {
list = list.map((e) => (e.id === editing.id ? payload : e));
} else {
list.push(payload);
}
try {
await setCustomApiEndpoints(localStorage.token, list);
endpoints = list;
editing = null;
resetForm();
startIntervals();
toast.success('Saved');
} catch (e: any) {
toast.error(e?.detail || 'Failed to save');
}
};
const deleteEndpoint = async (id: string) => {
const list = endpoints.filter((e) => e.id !== id);
try {
await setCustomApiEndpoints(localStorage.token, list);
endpoints = list;
delete results[id];
startIntervals();
toast.success('Deleted');
} catch (e: any) {
toast.error(e?.detail || 'Failed to delete');
}
};
const toggleEnabled = async (ep: CustomApiEndpoint) => {
const list = endpoints.map((e) => (e.id === ep.id ? { ...e, enabled: !e.enabled } : e));
try {
await setCustomApiEndpoints(localStorage.token, list);
endpoints = list;
startIntervals();
} catch (e: any) {
toast.error(e?.detail || 'Failed to update');
}
};
onMount(async () => {
await fetchEndpoints();
await fetchUrls();
startIntervals();
});
onDestroy(() => {
stopIntervals();
});
$: if (endpoints) {
startIntervals();
}
function formatResult(data: any): string {
if (data?.error) return `Error: ${data.error}`;
if (data?.text) return data.text;
if (data?.data && typeof data.data === 'object') {
return JSON.stringify(data.data, null, 2);
}
return JSON.stringify(data, null, 2);
}
</script>
<div class="w-full">
<div class="flex items-center justify-between mb-2">
<div class="text-sm font-semibold text-gray-700 dark:text-gray-300">
{$i18n.t('Custom API Endpoints')}
</div>
<button
class="text-xs px-2 py-1 rounded bg-gray-200 dark:bg-gray-700 hover:bg-gray-300 dark:hover:bg-gray-600 transition"
on:click={openManage}
>
{$i18n.t('Manage')}
</button>
</div>
{#if endpoints.length === 0}
<div class="text-xs text-gray-500 dark:text-gray-400">{$i18n.t('No custom endpoints configured')}</div>
{:else}
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-3">
{#each endpoints as ep (ep.id)}
<div
class="relative rounded-xl border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 p-3 shadow-sm flex flex-col gap-2"
in:fade={{ duration: 150 }}
>
<div class="flex items-center justify-between">
<div class="flex items-center gap-2 min-w-0">
<div class="font-medium text-sm truncate" title={ep.name}>{ep.name}</div>
<Tooltip content={ep.enabled ? $i18n.t('Enabled') : $i18n.t('Disabled')}>
<button
class="w-2 h-2 rounded-full {ep.enabled ? 'bg-green-500' : 'bg-gray-400'}"
on:click={() => toggleEnabled(ep)}
/>
</Tooltip>
</div>
{#if loading[ep.id]}
<Spinner className="w-3 h-3" />
{/if}
</div>
<div class="text-xs text-gray-500 dark:text-gray-400 truncate">
{openaiUrls[ep.connection_idx] ?? ''}{ep.path}
</div>
<div
class="text-xs font-mono bg-gray-50 dark:bg-gray-900 rounded p-2 max-h-32 overflow-auto whitespace-pre-wrap break-words"
>
{formatResult(results[ep.id] ?? {})}
</div>
<div class="flex justify-end gap-2">
<button
class="text-xs px-2 py-0.5 rounded bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"
on:click={() => execute(ep)}
>
{$i18n.t('Refresh')}
</button>
</div>
</div>
{/each}
</div>
{/if}
</div>
{#if showManage}
<div
class="fixed inset-0 z-50 flex items-center justify-center bg-black/40 p-4"
on:click|self={() => (showManage = false)}
>
<div class="bg-white dark:bg-gray-900 rounded-2xl shadow-xl w-full max-w-xl max-h-[90vh] overflow-y-auto p-5 flex flex-col gap-4">
<div class="flex items-center justify-between">
<h2 class="text-lg font-semibold">{$i18n.t('Manage Custom API Endpoints')}</h2>
<button class="text-gray-500 hover:text-gray-700 dark:hover:text-gray-300" on:click={() => (showManage = false)}>
</button>
</div>
<div class="flex flex-col gap-3 border rounded-xl p-3 border-gray-200 dark:border-gray-700">
<div class="text-sm font-medium">{editing ? $i18n.t('Edit Endpoint') : $i18n.t('Add Endpoint')}</div>
<div class="flex flex-col gap-1">
<label class="text-xs text-gray-500">{$i18n.t('Name')}</label>
<input class="input text-sm" bind:value={formName} placeholder={$i18n.t('e.g. Budget')} />
</div>
<div class="flex flex-col gap-1">
<label class="text-xs text-gray-500">{$i18n.t('Connection')}</label>
<select class="input text-sm" bind:value={formConnectionIdx}>
{#each openaiUrls as url, idx}
<option value={idx}>{url || $i18n.t('Unknown')}</option>
{/each}
</select>
</div>
<div class="flex flex-col gap-1">
<label class="text-xs text-gray-500">{$i18n.t('Path')}</label>
<input class="input text-sm" bind:value={formPath} placeholder="/budget" />
</div>
<div class="flex gap-3">
<div class="flex flex-col gap-1 flex-1">
<label class="text-xs text-gray-500">{$i18n.t('Method')}</label>
<select class="input text-sm" bind:value={formMethod}>
<option>GET</option>
<option>POST</option>
</select>
</div>
<div class="flex flex-col gap-1 flex-1">
<label class="text-xs text-gray-500">{$i18n.t('Refresh interval (s)')}</label>
<input class="input text-sm" type="number" min="5" bind:value={formRefresh} />
</div>
</div>
<div class="flex justify-end gap-2">
{#if editing}
<button
class="text-xs px-3 py-1.5 rounded bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"
on:click={() => {
editing = null;
resetForm();
}}
>
{$i18n.t('Cancel')}
</button>
{/if}
<button
class="text-xs px-3 py-1.5 rounded bg-blue-600 text-white hover:bg-blue-700"
on:click={saveEndpoint}
>
{editing ? $i18n.t('Update') : $i18n.t('Add')}
</button>
</div>
</div>
<div class="flex flex-col gap-2">
<div class="text-sm font-medium">{$i18n.t('Configured Endpoints')}</div>
{#if endpoints.length === 0}
<div class="text-xs text-gray-500">{$i18n.t('No endpoints')}</div>
{:else}
{#each endpoints as ep (ep.id)}
<div class="flex items-center justify-between rounded-lg border border-gray-200 dark:border-gray-700 p-2">
<div class="min-w-0">
<div class="text-sm font-medium truncate">{ep.name}</div>
<div class="text-xs text-gray-500 truncate">
{openaiUrls[ep.connection_idx] ?? ''}{ep.path}
</div>
</div>
<div class="flex items-center gap-2 shrink-0">
<button
class="text-xs px-2 py-1 rounded bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600"
on:click={() => editEndpoint(ep)}
>
{$i18n.t('Edit')}
</button>
<button
class="text-xs px-2 py-1 rounded bg-red-100 text-red-700 hover:bg-red-200 dark:bg-red-900 dark:text-red-200"
on:click={() => deleteEndpoint(ep.id)}
>
{$i18n.t('Delete')}
</button>
</div>
</div>
{/each}
{/if}
</div>
</div>
</div>
{/if}
<style>
.input {
@apply w-full px-2.5 py-1.5 rounded-lg border border-gray-200 dark:border-gray-700 bg-white dark:bg-gray-800 text-sm outline-none focus:ring-2 focus:ring-blue-500;
}
</style>
@@ -29,6 +29,7 @@
import MessageInput from './MessageInput.svelte';
import FolderPlaceholder from './Placeholder/FolderPlaceholder.svelte';
import FolderTitle from './Placeholder/FolderTitle.svelte';
import CustomApiEndpointCards from './CustomApiEndpointCards.svelte';
const i18n = getContext('i18n');
@@ -75,6 +76,10 @@
</script>
<div class="m-auto w-full max-w-6xl px-2 @2xl:px-20 translate-y-6 py-24 text-center">
<div class="w-full px-2 @2xl:px-20 mb-4">
<CustomApiEndpointCards />
</div>
{#if $temporaryChatEnabled}
<Tooltip
content={$i18n.t("This chat won't appear in history and your messages will not be saved.")}