API
When using the Fireaura API, specific versions can be targeted.
Base API Endpoints
These three endpoints are provided based on the underlying hardware and Fireaura subscription status.
For normal Fireaura users, the first endpoint is more than enough for almost all scenarios. The second endpoint provides extremely low-latency responses, however these are limited to 800ms compute times. Anything higher will be rejected to compute. The last endpoint is for Fireaura Ultimate subscription plans. These plans are given access to low-latency high performance compute nodes which have no time limits.
Using custom versions
If a custom version is required, say for example v3 build 0b20bc9 (last build to include quick commands), the custom endpoint api can be utilized
At the moment, alternative API endpoints are not supported
API Specification
/info
Returns info about the current Fireaura build.
Example response
/compute/alternatives
Computes alternative ways to write the given text. Outputs are ordered by importance and how much better the AI thinks the alternative is.
POST /compute/alternatives
{ "text": "The quick brown lamb hopped over the chickens pen" }
Example response
/compute/completion
Compute a completion to the given text. An optional background property can also be set which tells the AI how to understand the prompt better
POST /compute/completion
{
"text": "I got a",
"background": "a music lyric of a famous song"
}
Example Response
Last updated