fix(inference-billing): fix inference billing when stream is true via API, add drag-and-drop functionality to deployed chat (#1606)

* fix(inference): fix inference billing when stream is true via API

* add drag-and-drop to deployed chat
This commit is contained in:
Waleed
2025-10-11 20:05:59 -07:00
committed by waleed
parent ee77dea2d6
commit 34fc8f84f5
4 changed files with 75 additions and 12 deletions

View File

@@ -186,6 +186,11 @@ export interface ExecutionResult {
error?: string // Error message if execution failed
logs?: BlockLog[] // Execution logs for all blocks
metadata?: ExecutionMetadata
_streamingMetadata?: {
// Internal metadata for streaming execution
loggingSession: any
processedInput: any
}
}
/**