ollama.client

Module providing a D language binding for the Ollama REST API.

This module defines the OllamaClient class, which facilitates interaction with an Ollama server for tasks such as text generation, chat interactions, and model management. It supports both native Ollama endpoints and OpenAI-compatible endpoints, using std.net.curl for HTTP requests and std.json for JSON processing.

Members

Classes

OllamaClient
class OllamaClient

A client class for interacting with the Ollama REST API.

Manifest constants

DEFAULT_HOST
enum DEFAULT_HOST;

Default host URL for the Ollama server.

Structs

Message
struct Message

Represents a single message in a chat interaction.

Examples

import ollama.client;
import std.stdio;

void main() {
    auto client = new OllamaClient();
    auto response = client.generate("llama3", "What is the weather like?");
    writeln(response["response"].str);
}

See Also

Meta