repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 |
| /** |
| #2 | * CLAWD Inference Client |
| #3 | * |
| #4 | * Wraps CLAWD Runtime's /v1/chat/completions endpoint (OpenAI-compatible). |
| #5 | * The automaton pays for its own thinking through CLAWD credits. |
| #6 | */ |
| #7 | import type { InferenceClient } from "../types.js"; |
| #8 | interface InferenceClientOptions { |
| #9 | apiUrl: string; |
| #10 | apiKey: string; |
| #11 | defaultModel: string; |
| #12 | maxTokens: number; |
| #13 | lowComputeModel?: string; |
| #14 | } |
| #15 | export declare function createInferenceClient(options: InferenceClientOptions): InferenceClient; |
| #16 | export {}; |
| #17 | //# sourceMappingURL=inference.d.ts.map |