
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@focus-reactive/sanity-ai-sdk
Advanced tools
yarn add @focus-reactive/sanity-ai-sdk
// 1. Import the configration function
import { initSDK } from "@focus-reactive/content-ai-sdk";
import { SanityClient } from "sanity";
interface IConfig {
client: SanityClient;
openAiKey: string;
}
const config: IConfig = {
client: new SanityClient(),
openAiKey: YOUR_OPENAI_KEY,
};
// 2. Initialize the SDK with the OpenAI token
initSDK(config);
We implemented several features that you can use in your projects to work with localisations.
transalateSelectedDocumentFields
Parameters
interface TranslateSelectedDocumentFieldsProps {
fieldNames: string[];
documentId: string;
targetLanguage: string;
newDocumentConfig?: NewDocumentprops;
}
interface NewDocumentprops {
titleFieldName: string;
additionalFields?: Record<string, unknown>;
}
fieldNames
- Array of field names that should be translated. Should match the document schema. Can with any type of content (string, JSON, etc.)documentId
- Id of the document that we need to process.targetLanguage
- Language to which we need to translate the content.newDocumentConfig
- Optional. If you want to create a new document with the translated content, you can pass the config here.titleFieldName
- Field that should be used to create a new document title based on it's value.additionalFields
- Optional. Additional fields that should be added to the new document.Usage
// 1. Import the function
import { transalateSelectedDocumentFields } from "@focus-reactive/sanity-ai-sdk";
// 2. Call the function
const translatedFileds = await transalateSelectedDocumentFields({
fieldNames: ["movieTitle", "description", "actors"],
targetLanguage: "german",
documentId: DOCUMENT_ID,
});
findRelevantTags
Parameters
interface FindRelevantTagsProps {
documentId: string;
tags: Tag[];
contentTitle: string;
}
interface Tag {
id: string;
title: string;
description?: string;
}
documentId
- Id of the document that we need to process.tags
- Array of tags that should be used to categorise the document.contentTitle
- Title of the document that should be used to set a logical context.Usage
// 1. Import the function
import { findRelevantTags } from "@focus-reactive/sanity-ai-sdk";
// 2. Call the function
const result = await findRelevantTags({
documentId: "documentId",
contentTitle: "Batman movie",
tags: [],
});
summariseDocument
Parameters
interface SummariseDocumentProps {
documentId: string;
contentTitle: string;
promptModifier?: string;
}
documentId
- Id of the document that we need to process.tags
- Array of tags that should be used to categorise the document.promptModifier
- Optional. If you want to a modifier to the prompt, you can pass the modifier here.Usage
// 1. Import the function
import { summariseDocument } from "@focus-reactive/sanity-ai-sdk";
// 2. Call the function
const result = await summariseDocument({
documentId: "documentId",
contentTitle: "Batman movie",
});
FAQs
Unknown package
We found that @focus-reactive/sanity-ai-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.