Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@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
The npm package @focus-reactive/sanity-ai-sdk receives a total of 1 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 healthy version release cadence and project activity because the last version was released less than 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.