Skip to content

Latest commit

 

History

History
62 lines (38 loc) · 2.17 KB

octoai.md

File metadata and controls

62 lines (38 loc) · 2.17 KB

OctoAI

OctoAI

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.

Interface Name

  • octoai

Example Usage

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();

Model Aliases

The following model aliases are provided for this provider.

  • default: mistral-7b-instruct
  • large: mixtral-8x22b-instruct
  • small: mistral-7b-instruct
  • agent: mixtral-8x22b-instruct

Options

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.

Getting an API Key

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.