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
/**
Optional. When enabled, the model will use your own Vertex data store to ground the response.
@see https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/ground-gemini#private-ground-gemini
*/
useOwnDataGrounding?: {
datastore: string;
}
Feature Description
Following on @shaper's message in #3553 (comment), I'm creating a new issue to track the feature of being able to use Google's grounding-to-your-own data feature (https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/ground-gemini#private-ground-gemini).
Use Cases
I want to ground answers with my own data, using Google's feature for this :)
Additional context
I'd be very happy to send over a PR. Here's what I am thinking:
GoogleGenerativeAISettings
interface:google
packageprepareTool
function:useOwnDataGrounding: { datastore: string; } | undefined
argument.tools
and any of the grounding tools{ retrieval: { vertexAiSearch: useOwnDataGrounding } }
tool ifuseOwnDataGrounding
is not undefinedIf broadly aligned, let me know and I'll send a PR.
The text was updated successfully, but these errors were encountered: