cinnavo
v1.0.1
Published
Cinnavo is a cutting-edge platform designed to enhance applications with AI-powered insights through Retrieval-Augmented Generation (RAG). By integrating Cinnavo's SDK, developers can access verified data from reputable sources, ensuring their Large Langu
Maintainers
Readme
Overview
Cinnavo is a cutting-edge platform designed to enhance applications with AI-powered insights through Retrieval-Augmented Generation (RAG). By integrating Cinnavo's SDK, developers can access verified data from reputable sources, ensuring their Large Language Models (LLMs) provide accurate, context-aware responses. Key features include real-time updates, intelligent context management to reduce hallucinations, and advanced semantic search capabilities. The platform offers seamless integration with clear documentation and intuitive APIs, enabling developers to quickly implement its powerful functionalities into their applications. Cinnavo empowers developers to build more intelligent and context-aware AI applications, unlocking the full potential of their AI systems.
Installation
$ npm i cinnavo
Usage
import Cinnavo from "cinnavo"
const cinnavo = new Cinnavo({api_key: "your-api-key"});
const fetchResults = async () => {
const result = await cinnavo.search({
query: "Converse chuck taylor all star",
num_results: 1,
categories: "general",
date_range: "day",
ai_response: true,
full_content: true,
});
console.log(result);
}
fetchResult();
