Skip to content

API Reference

Complete reference for the HyperBinder Python SDK.

Overview

The SDK is organized into these areas:

Module Purpose
Client Main entry points (HyperBinder, AsyncHyperBinder)
Collection Fluent API for collection operations
Compose Schema system (Molecules, Compounds, Fields)
Models Result types (SearchResult, Context, etc.)
Exceptions Error handling

Client

Compose (Schema System)

Results & Errors

Import Patterns

# Main client
from hybi import HyperBinder, AsyncHyperBinder

# Result types
from hybi import SearchResult, Context, Answer

# Compose schemas
from hybi.compose import Triple, Field, Encoding
from hybi.compose import KnowledgeGraph, Catalog

# Exceptions
from hybi import HyperBinderError, CollectionNotFoundError