update libraries for latest support and fix bad merge with recipe (#7486)

This commit is contained in:
Zane
2026-02-24 10:44:50 -08:00
committed by GitHub
parent a6e9ba6f56
commit 20166906a5
4 changed files with 530 additions and 1141 deletions
+1
View File
@@ -66,6 +66,7 @@ export interface RequestOptions<
}>,
Pick<
ServerSentEventsOptions<TData>,
| 'onRequest'
| 'onSseError'
| 'onSseEvent'
| 'sseDefaultRetryDelay'
@@ -156,7 +156,9 @@ export default function RecipesView() {
setView('pair', {
disableAnimation: true,
resumeSessionId: session.id,
initialMessage: recipe.prompt ? { msg: recipe.prompt, images: [] } : undefined,
initialMessage: session.recipe?.prompt
? { msg: session.recipe.prompt, images: [] }
: undefined,
});
} catch (error) {
console.error('Failed to load recipe:', error);