![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@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 18 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.