Skip to content

Latest commit

 

History

History
91 lines (65 loc) · 4.18 KB

hyperbeeai.md

File metadata and controls

91 lines (65 loc) · 4.18 KB

HyperBeeAI is an artificial intelligence (AI) company that develops small-footprint language models (LLMs) designed for on-premises deployment. Their technology aims to reduce computing costs and enhance data privacy for businesses by enabling the use of powerful AI capabilities locally. HyperBeeAI's platform includes a proprietary framework for training and deploying customized LLMs, addressing the growing demand for efficient and secure AI solutions in various industries.

Interface Name

  • hyperbeeai

Example Usage

const { LLMInterface } = require('llm-interface');

LLMInterface.setApiKey({'hyperbeeai': process.env.HYPERBEEAI_API_KEY});

async function main() {
  try {
    const response = await LLMInterface.sendMessage('hyperbeeai', '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: hive
  • large: gpt-4o
  • small: gemini-1.5-flash
  • agent: gpt-4o

Options

The following parameters can be passed through options.

  • add_generation_prompt: Details not available, please refer to the LLM provider documentation.
  • best_of: Details not available, please refer to the LLM provider documentation.
  • echo: Details not available, please refer to the LLM provider documentation.
  • frequency_penalty: Details not available, please refer to the LLM provider documentation.
  • ignore_eos: Details not available, please refer to the LLM provider documentation.
  • include_stop_str_in_output: Details not available, please refer to the LLM provider documentation.
  • input_value: Details not available, please refer to the LLM provider documentation.
  • json_schema: Details not available, please refer to the LLM provider documentation.
  • language: Details not available, please refer to the LLM provider documentation.
  • length_penalty: Details not available, please refer to the LLM provider documentation.
  • logit_bias: Details not available, please refer to the LLM provider documentation.
  • logprobs: Details not available, please refer to the LLM provider documentation.
  • max_tokens: Details not available, please refer to the LLM provider documentation.
  • min_p: Details not available, please refer to the LLM provider documentation.
  • n: Details not available, please refer to the LLM provider documentation.
  • optimization: Details not available, please refer to the LLM provider documentation.
  • output_mode: Details not available, please refer to the LLM provider documentation.
  • presence_penalty: Details not available, please refer to the LLM provider documentation.
  • repetition_penalty: Details not available, please refer to the LLM provider documentation.
  • skip_special_tokens: Details not available, please refer to the LLM provider documentation.
  • spaces_between_special_tokens: Details not available, please refer to the LLM provider documentation.
  • stop: Details not available, please refer to the LLM provider documentation.
  • stop_token_ids: 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_k: Details not available, please refer to the LLM provider documentation.
  • top_p: Details not available, please refer to the LLM provider documentation.
  • use_beam_search: Details not available, please refer to the LLM provider documentation.
  • user: Details not available, please refer to the LLM provider documentation.

Features

  • Native JSON Mode
  • Streaming

Getting an API Key

Commercial (Details Pending): The Hyperbee AI API is a commercial product.

To get an API key, first create a HyperBee AI account, then visit the link below.

HyperBee AI documentation is available here.