diff --git a/docker-compose.yaml b/docker-compose.yaml index 05a25c32a6..cdb7d3f9de 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,7 +4,7 @@ services: big-agi: image: ghcr.io/enricoros/big-agi:main ports: - - 3000:3000 + - "3000:3000" env_file: - .env - command: ["next", "start", "-p", "3000" ] \ No newline at end of file + command: [ "next", "start", "-p", "3000" ] \ No newline at end of file diff --git a/src/common/theme.ts b/src/common/theme.ts index 120ff288f4..725d39c87c 100644 --- a/src/common/theme.ts +++ b/src/common/theme.ts @@ -11,7 +11,6 @@ export const hideOnDesktop = { display: { xs: 'flex', md: 'none' } }; // Dimensions export const settingsGap = 2; export const settingsCol1Width = 150; -export const settingsMaxWidth = 520; // Theme & Fonts diff --git a/src/modules/openai/openai.server.ts b/src/modules/openai/openai.server.ts index ec0e3c7b19..81f2346042 100644 --- a/src/modules/openai/openai.server.ts +++ b/src/modules/openai/openai.server.ts @@ -45,16 +45,6 @@ export async function openaiPostResponse(api: OpenAI.API.C return response; } -export async function openaiPost( - api: OpenAI.API.Configuration, - apiPath: string, - body: TBody, - signal?: AbortSignal, -): Promise { - const response = await openaiPostResponse(api, apiPath, body, signal); - return await response.json(); -} - /// API <> Wire conversion helpers