Table of Contents

Quick Start

Setup

Register the API client:

Query Models

Use the fluent builder pattern:


// Build a query for LoRA models tagged with "anime"
var result = await apiClient.Models
    .WhereType(ModelType.Lora)
    .WhereTag("anime")
    .ExecuteAsync(resultsLimit: 10);

Handle Results

All operations return Result<T>:

Next Steps