OctoAI, originating from the University of Washington, specializes in creating efficient, reliable, and customizable AI systems. The company builds on GenAI optimization and offers a broad range of hardware options or integrates into existing environments. OctoAI's roots trace back to the creators of Apache TVM, a technology enabling ML models to run efficiently on any hardware. Their mission is to harness the value of AI innovations, supported by significant funding and a global team.
octoai
const { LLMInterface } = require('llm-interface');
LLMInterface.setApiKey({'octoai': process.env.OCTOAI_API_KEY});
async function main() {
try {
const response = await LLMInterface.sendMessage('octoai', '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
: mistral-7b-instructlarge
: mixtral-8x22b-instructsmall
: mistral-7b-instructagent
: mixtral-8x22b-instruct
The following parameters can be passed through options
.
max_tokens
: Details not available, please refer to the LLM provider documentation.presence_penalty
: 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.
Commercial with Free Trial: The Octo AI API is a commercial product but offers a $5.00 credit to get started. No credit card is required initially.
To get an API key, first create an OctoAI account, then visit the link below.
OctoAI documentation is available here.