Anyscale is a leading AI platform that enables developers and AI teams to build, deploy, and scale AI applications with unmatched efficiency. Built on the Ray open-source framework, Anyscale offers a fully managed platform with capabilities like orchestration, experiment management, and hyperparameter tuning. Anyscale is used by thousands of organizations to accelerate their AI development, providing a seamless experience from laptop to production across diverse AI workloads.
anyscale
const { LLMInterface } = require('llm-interface');
LLMInterface.setApiKey({'anyscale': process.env.ANYSCALE_API_KEY});
async function main() {
try {
const response = await LLMInterface.sendMessage('anyscale', '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
: mistralai/Mixtral-8x22B-Instruct-v0.1large
: meta-llama/Llama-3-70b-chat-hfsmall
: mistralai/Mistral-7B-Instruct-v0.1agent
: mistralai/Mixtral-8x22B-Instruct-v0.1
default
: thenlper/gte-largelarge
: thenlper/gte-largesmall
: BAAI/bge-large-en-v1.5
The following parameters can be passed through options
.
frequency_penalty
: Details not available, please refer to the LLM provider documentation.max_tokens
: 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.
- Embeddings
Commercial with Free Trial: The Anyscale API does not require a credit card and comes with $10 credit to get started.
To get an API key, first create an Anyscale account, then visit the link below.
Anyscale documentation is available here.