Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@formula-monks/kurt-vertex-ai
Advanced tools
VertexAI plugin for Kurt - A wrapper for AI SDKs, for building LLM-agnostic structured AI applications
Kurt is a TypeScript library by Formula.Monks that wraps AI SDKs, making it easy to build structured LLM-based applications (RAG, agents, etc) that work with any LLM that supports structured output (via function calling features).
This package implements an adapter for Kurt that works with Vertex AI's Gemini models.
Read here for more information about Kurt.
This example code shows how to set up and use Kurt with Vertex AI.
import { Kurt } from "@formula-monks/kurt"
import { KurtVertexAI } from "@formula-monks/kurt-vertex-ai"
import { VertexAI } from "@google-cloud/vertexai"
import { z } from "zod"
const vertexAdapter = new KurtVertexAI({
vertexAI: new VertexAI({
project: process.env.VERTEX_AI_PROJECT ?? "my-project",
location: process.env.VERTEX_AI_LOCATION ?? "us-central1",
}),
model: "gemini-1.0-pro", // or any other supported model
})
const kurt = new Kurt(vertexAdapter)
const stream = kurt.generateStructuredData({
// or any other generation method
prompt: "Say hello!",
schema: z.object({
say: z.string().describe("A single word to say"),
}),
})
const { data } = await stream.result
console.log(data) // { say: "hello" }
FAQs
VertexAI plugin for Kurt - A wrapper for AI SDKs, for building LLM-agnostic structured AI applications
We found that @formula-monks/kurt-vertex-ai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.