fix: remove stray 't' chars causing syntax errors in type definitions

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-24 21:35:58 +07:00
co-authored by Claude Opus 4.8
parent 84e7d89a75
commit b69f252f37
2 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export interface OpenAIRequest {
temperature?: number;
max_tokens?: number;
top_p?: number;
t top_k?: number;
top_k?: number;
stream?: boolean;
stop?: string | string[];
presence_penalty?: number;
+1 -4
View File
@@ -40,9 +40,8 @@ export interface AnthropicRequest {
stream?: boolean;
temperature?: number;
top_p?: number;
t top_k?: number;
stream?: boolean;
top_k?: number;
stream?: boolean;
stop_sequences?: string[];
system?: string | AnthropicSystemBlock[];
metadata?: Record<string, unknown>;
@@ -88,8 +87,6 @@ interface BackendBody {
max_tokens: number;
temperature?: number;
top_p?: number;
t top_k?: number;
stream?: boolean;
top_k?: number;
stream?: boolean;
stop?: string | string[];