IntelliNode v1.5.3
New Changes 🌟
The changes between v1.4.2 and v1.5.3 releases:
- Add support for OpenAI Text-to-Speech.
- Update OpenAI Vision model for DALL·E 3 integration.
- Introduce Cohere Web Search functionality.
- Added support for LLaMa embeddings.
Code Examples 💻
A sneak peek at web search with cohere model:
const CohereAIWrapper = require('intellinode');
const cohere = new CohereAIWrapper(process.env.COHERE_API_KEY);
const params = {
model: 'command-nightly',
message: 'what is the command to install intellinode npm module ?',
stream: false,
connectors: [{'id': 'web-search'}],
};
const result = await cohere.generateChatText(params);