Static properties for common LLM service endpoints, which
can be used in the Llaminate configuration.
Properties:
| Name | Type | Description |
|---|---|---|
Llaminate.ANTHROPIC |
string | Anthropic completions API endpoint. |
Llaminate.DEEPSEEK |
string | Deepseek completions API endpoint. |
Llaminate.GOOGLE |
string | Google completions API endpoint. |
Llaminate.MISTRAL |
string | Mistral completions API endpoint. |
Llaminate.OPENAI |
string | OpenAI completions API endpoint. |
Example
const mistral = new Llaminate({
endpoint: Llaminate.MISTRAL,
key: "12345-abcde-67890-fghij-klm",
model: "mistral-small-latest"
});