fix(frontend): add maxTokens to StreamBody interface

This commit is contained in:
Manmohan Sharma 2026-04-16 14:51:03 -07:00
parent faf4810696
commit fe34250900
No known key found for this signature in database

View File

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