fix: Post-rebase fixes

This commit is contained in:
Aleksander Grygier 2026-02-13 14:16:58 +01:00
parent f32a4f2c5f
commit ecd4520848
2 changed files with 0 additions and 24 deletions

View File

@ -129,19 +129,6 @@
}
}
:root {
--chat-form-area-height: 8rem;
--chat-form-area-offset: 2rem;
--max-message-height: max(24rem, min(80dvh, calc(100dvh - var(--chat-form-area-height) - 12rem)));
}
@media (min-width: 640px) {
:root {
--chat-form-area-height: 24rem;
--chat-form-area-offset: 12rem;
}
}
@layer base {
* {
@apply border-border outline-ring/50;

View File

@ -12,17 +12,6 @@ export interface ApiChatCompletionTool {
function: ApiChatCompletionToolFunction;
}
export interface ApiChatCompletionToolFunction {
name: string;
description?: string;
parameters: Record<string, unknown>;
}
export interface ApiChatCompletionTool {
type: 'function';
function: ApiChatCompletionToolFunction;
}
export interface ApiChatMessageContentPart {
type: ContentPartType;
text?: string;