Forefront AI offers a chat-based AI model named 'forefront/Mistral-7B-Instruct-v0.2-chatml' for various text generation tasks.
forefront
const { LLMInterface } = require('llm-interface');
LLMInterface.setApiKey({'forefront': process.env.FOREFRONT_API_KEY});
async function main() {
try {
const response = await LLMInterface.sendMessage('forefront', '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
: forefront/Mistral-7B-Instruct-v0.2-chatmllarge
: forefront/Mistral-7B-Instruct-v0.2-chatmlsmall
: forefront/Mistral-7B-Instruct-v0.2-chatml
The following parameters can be passed through options
.
max_tokens
: Details not available, please refer to the LLM provider documentation.temperature
: Details not available, please refer to the LLM provider documentation.
Commercial with Free Trial: The Forefront API is a commercial product but offers $20 in free credits to get started.
To get an API key, first create a Forefront AI account, then visit the link below.
Forefront AI documentation is available here.