Neets.ai offers a cloud-based platform for text-to-speech (TTS) and conversational AI solutions. Their Text-to-Speech API allows developers to convert text into natural-sounding speech using a variety of voices and languages. Additionally, their Conversational AI API provides tools for building chatbots and virtual assistants capable of engaging in real-time conversations. Neets.ai leverages deep learning and natural language processing (NLP) techniques to deliver high-quality and customizable solutions for businesses and developers seeking to integrate voice and conversational capabilities into their applications and services.
neetsai
const { LLMInterface } = require('llm-interface');
LLMInterface.setApiKey({'neetsai': process.env.NEETSAI_API_KEY});
async function main() {
try {
const response = await LLMInterface.sendMessage('neetsai', 'Explain the importance of low latency LLMs.');
console.log(response.results);
} catch (error) {
console.error(error);
throw error;
}
}
main();
The following model aliases are provided for this provider.
default
: Neets-7Blarge
: mistralai/Mixtral-8X7B-Instruct-v0.1small
: Neets-7B
The following parameters can be passed through options
.
frequency_penalty
: Details not available, please refer to the LLM provider documentation.max_tokens
: Details not available, please refer to the LLM provider documentation.n
: Details not available, please refer to the LLM provider documentation.presence_penalty
: Details not available, please refer to the LLM provider documentation.response_format
: Details not available, please refer to the LLM provider documentation.seed
: Details not available, please refer to the LLM provider documentation.stop
: Details not available, please refer to the LLM provider documentation.stream
: Details not available, please refer to the LLM provider documentation.temperature
: Details not available, please refer to the LLM provider documentation.top_p
: Details not available, please refer to the LLM provider documentation.
- Streaming
Free Tier Available: The Neets.ai API is a commercial product but offers a free tier. No credit card is required to get started.
To get an API key, first create a Neets.ai account, then visit the link below.
Neets.ai documentation is available here.