@conduit-llm/core
v0.1.1
Published
Core provider interfaces, typed errors, events, redaction, and structured output helpers for Conduit.
Downloads
275
Maintainers
Readme
@conduit-llm/core
Core TypeScript interfaces and utilities for Conduit providers.
Install
npm install @conduit-llm/coreContents
- Provider request and response types.
- Typed auth, rate-limit, and provider errors.
- Structured output helpers.
- Event and redaction utilities.
Usage
import { ProviderUnavailableError, redact } from "@conduit-llm/core";
const safe = redact({ accessToken: "secret" });
const error = new ProviderUnavailableError("Provider unavailable.");