Costantin

Results 51 comments of Costantin

@manniL I'm not sure, in theory I agree, but we do have access to the URL, even the nuxt example is: ```js // Example nuxt middleware from docs export default...

This is the same error: https://community.openai.com/t/beta-completion-runtools/531973

After some investigation, when role=="tool" the message never gets added to the stream. in other words this will log only in the backend and never in the frontend. ```js runner.on("message",...

Hi, I tried all possible classes and also to simply read the chucks from the stream without any class. The tool response never gets sent to the frontend, I think...

@RobertCraigie I'm trying something like this in the backend: ```js .on("message", async (message) => { if (message.role === "tool" && !added_tool_call_ids.includes(message.tool_call_id)) { added_tool_call_ids.push(message.tool_call_id) runner._addMessage(message) } ``` However it fails because...

@Pablo4Coding you can use a custom tool for now which works the same way: ```js tool({ description:`A file search tool`, parameters: z.object({ query:z.string().describe("The search query. This is a search query...

Also vertex has a very simply rest API, so most likely the whole ai-sdk/vertex could only depend on built in fetch and work perfectly everywhere.

Gemini is all I need, however it now works directly with ai/google. Before there were some differences (like unable to pass a pdf). So if vertex would support only Gemini...

This is what worked for me using `vite` - I hope it's not too fragile: (it's copied from another issue, I added the vite wrapper around postcss) ``` /** *...

think a great solution would be if tailwind would add somewthing like `import @shadowdom` which would import all `@property` classes, so for shadowdom projects we could simply do: ``` @import...