Here is a version of my current setup
Here is my current config
import { genkit } from "genkit";
import { googleAI } from "@genkit-ai/googleai";
import { openAI } from "genkitx-openai";
import { anthropic } from "genkitx-anthropic";
import { cohere } from "genkitx-cohere";
import { groq } from "genkitx-groq";
import { mistral } from "genkitx-mistral";
import { logger } from "genkit/logging";
export const ai = genkit({
promptDir: "./prompts",
plugins: [
googleAI({
apiKey: "XYZ1",
apiVersion: "v1beta",
}),
openAI({
apiKey:
"XYZ",
}), }),
anthropic({
apiKey:
"XYZ2",
}),
cohere({ apiKey: "sdfsdf" }),
groq({
apiKey: "sdfdsfs",
}),
mistral({ apiKey: "sdfsdf" }),
],
});
I assume I should be adding vertexAIModelGarden and/or vertex ?