Merge pull request #34 from manmohan659/fix/stream-body-format

fix(frontend): add maxTokens to StreamBody type
This commit is contained in:
Manmohan 2026-04-16 17:51:15 -04:00 committed by GitHub
commit 15bb2324e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,6 +8,7 @@ interface StreamBody {
model?: string;
temperature?: number;
topK?: number;
maxTokens?: number;
conversationId?: string;
}