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
import { vertex } from '@ai-sdk/google-vertex';
export { createAgent } from '@statelyai/agent';
createAgent({
model: vertex('gemini-1.5-pro'),
...
});
but it gives the following type error:
Type '{ type: "reasoning"; textDelta: string; }' is not assignable to type 'LanguageModelV1StreamPart'.
Type '{ type: "reasoning"; textDelta: string; }' is not assignable to type '{ type: "text-delta"; textDelta: string; }'.
Types of property 'type' are incompatible.
Type '"reasoning"' is not assignable to type '"text-delta"'
However, if I declare as any the agent seems to work as expected so it is maybe only a typing issue?
I use the vertex model to create the agent:
but it gives the following type error:
Type '{ type: "reasoning"; textDelta: string; }' is not assignable to type 'LanguageModelV1StreamPart'.
Type '{ type: "reasoning"; textDelta: string; }' is not assignable to type '{ type: "text-delta"; textDelta: string; }'.
Types of property 'type' are incompatible.
Type '"reasoning"' is not assignable to type '"text-delta"'
However, if I declare
as any
the agent seems to work as expected so it is maybe only a typing issue?Versions:
The text was updated successfully, but these errors were encountered: