-
Notifications
You must be signed in to change notification settings - Fork 497
Consistently use node: prefix in example apps #95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
seratch
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some comments for reviewers
| parameters: z.object({ | ||
| demo: z.string(), | ||
| }), | ||
| parameters: z.object({ city: z.string() }), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for consistency
| ModelProvider, | ||
| Model, | ||
| ModelRequest, | ||
| AgentOutputType, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused
| ); | ||
| const state = stream.state; | ||
| for (const interruption of stream.interruptions) { | ||
| const ok = await confirm( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the dom confirm is not an async function
This pull request updates the examples to use
node:prefix when it's necessary.