unbound-claude-code
Version:
Claude Code with Unbound integration - Drop-in replacement for Claude Code with multi-provider routing and cost optimization
27 lines • 624 B
TypeScript
export interface UnboundConfig {
apiKey?: string;
baseUrl?: string;
logLevel?: "debug" | "info" | "warn" | "error";
}
export interface UnboundModel {
id: string;
object: string;
created: number;
owned_by: string;
}
export interface UnboundModelsResponse {
object: string;
data: UnboundModel[];
}
export interface OpenAIMessage {
role: "system" | "user" | "assistant";
content: string;
}
export interface OpenAIRequest {
model: string;
messages: OpenAIMessage[];
max_tokens?: number;
temperature?: number;
stream?: boolean;
}
//# sourceMappingURL=types.d.ts.map