Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed May 18, 2023
1 parent f4e3bcf commit 49871db
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
command: [ "next", "start", "-p", "3000" ]
1 change: 0 additions & 1 deletion src/common/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 0 additions & 10 deletions src/modules/openai/openai.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ export async function openaiPostResponse<TBody extends object>(api: OpenAI.API.C
return response;
}

export async function openaiPost<TOut extends object, TBody extends object>(
api: OpenAI.API.Configuration,
apiPath: string,
body: TBody,
signal?: AbortSignal,
): Promise<TOut> {
const response = await openaiPostResponse(api, apiPath, body, signal);
return await response.json();
}


/// API <> Wire conversion helpers

Expand Down

0 comments on commit 49871db

Please sign in to comment.