
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@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.
transalateSelectedDocumentFieldsParameters
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,
});
findRelevantTagsParameters
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: [],
});
summariseDocumentParameters
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
The npm package @focus-reactive/sanity-ai-sdk receives a total of 0 weekly downloads. As such, @focus-reactive/sanity-ai-sdk popularity was classified as not popular.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.