mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-19 10:57:45 +00:00
Fix parsing of generated_asset response
This commit is contained in:
parent
2b32f0e80d
commit
e3aee50cf3
1 changed files with 4 additions and 0 deletions
|
@ -958,6 +958,10 @@ export class KhojChatView extends KhojPaneView {
|
||||||
console.log(`status: ${chunk.data}`);
|
console.log(`status: ${chunk.data}`);
|
||||||
const statusMessage = chunk.data;
|
const statusMessage = chunk.data;
|
||||||
this.handleStreamResponse(this.chatMessageState.newResponseTextEl, statusMessage, this.chatMessageState.loadingEllipsis, false);
|
this.handleStreamResponse(this.chatMessageState.newResponseTextEl, statusMessage, this.chatMessageState.loadingEllipsis, false);
|
||||||
|
} else if (chunk.type === 'generated_assets') {
|
||||||
|
const generatedAssets = chunk.data;
|
||||||
|
const imageData = this.handleImageResponse(generatedAssets, this.chatMessageState.rawResponse);
|
||||||
|
this.handleStreamResponse(this.chatMessageState.newResponseTextEl, imageData, this.chatMessageState.loadingEllipsis, false);
|
||||||
} else if (chunk.type === 'start_llm_response') {
|
} else if (chunk.type === 'start_llm_response') {
|
||||||
console.log("Started streaming", new Date());
|
console.log("Started streaming", new Date());
|
||||||
} else if (chunk.type === 'end_llm_response') {
|
} else if (chunk.type === 'end_llm_response') {
|
||||||
|
|
Loading…
Reference in a new issue