feat: first cut at openai compatible server

This commit is contained in:
Georg Bauer
2026-07-24 21:12:48 +02:00
parent bbbe65a75f
commit d554b77b9d
18 changed files with 2612 additions and 535 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE preferences DROP COLUMN endpoint_port;

View File

@@ -0,0 +1,2 @@
ALTER TABLE preferences ADD COLUMN endpoint_port INTEGER NOT NULL DEFAULT 4000
CHECK (endpoint_port BETWEEN 1 AND 65535);