You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The return type of streamSSE does not match and typsescript is complaining
Example:
constchatRoute=createRoute({method: 'post',path: '/{projectId}/chat',security: [{Bearer: []}],description: 'Send a message to the project chat and receive a response via SSE',request: {params: z.object({projectId: z.string().describe('The ID of the project'),}),body: {content: {'application/json': {schema: z.object({message: z.string().describe('The message to send'),conversationId: z.string().optional().describe('The ID of the conversation, if continuing an existing one'),}),},},},},responses: {200: {description: 'Successful response with SSE stream',content: {'text/event-stream': {schema: z.object({event: z.enum(['start','token','end','error']),data: z.string(),}),},},},
...errorResponse,},})app.openapi(chatRoute,async(c)=>{returnstreamSSE(c,async(stream)=>{[...]})})
The text was updated successfully, but these errors were encountered:
Think it is related to this: #374
Issue:
The return type of
streamSSE
does not match and typsescript is complainingExample:
The text was updated successfully, but these errors were encountered: