diff --git a/server/controllers/OpeyIIController.ts b/server/controllers/OpeyIIController.ts index 381391a..f9dc65a 100644 --- a/server/controllers/OpeyIIController.ts +++ b/server/controllers/OpeyIIController.ts @@ -96,7 +96,7 @@ export class OpeyController { } - // wrangle our text stream into a langchain stream + // Transform our stream if needed, right now this is just a passthrough const frontendStream: ReadableStream = stream.pipeThrough(frontendTransformer) // If we need to split the stream into two, we can use the tee method as below diff --git a/src/components/ChatWidget.vue b/src/components/ChatWidget.vue index 038858b..14df60a 100644 --- a/src/components/ChatWidget.vue +++ b/src/components/ChatWidget.vue @@ -83,7 +83,7 @@ export default { } const decodedValue = decoder.decode(value); - console.log('Received:', decodedValue); + console.debug('Received:', decodedValue); //DEBUG // Parse the SSE data format const lines = decodedValue.split('\n'); @@ -147,9 +147,9 @@ export default { - + - + Send