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.
hyperbeeai
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();
The following model aliases are provided for this provider.
default
: hivelarge
: gpt-4osmall
: gemini-1.5-flashagent
: gpt-4o
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.
- Native JSON Mode
- Streaming
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.