/** * Org inference-provider commands — the imperative, config-less counterpart to * `defineConfig({ providers: [...] })` + `lobu apply`. Both edit the same * store: the org's `/inference-providers` REST surface (mounted under the * agents router). Use these when there is no `lobu.config.ts` for the project * — e.g. adding a model provider to an org that only exists server-side. * * OAuth (subscription sign-in) providers are the one exception: their * start/complete routes require an interactive browser session, so the CLI * points at the web console instead of driving the flow. */ import type { CloudCommandOptions } from "../_lib/cloud-options.js"; export declare function providersListCommand(options?: CloudCommandOptions): Promise; export declare function providersCatalogCommand(options?: CloudCommandOptions): Promise; export declare function providersCreateCommand(slug: string, options: CloudCommandOptions & { kind: string; key: string; name?: string; model?: string; capabilities?: string; default?: boolean; }): Promise; export declare function providersUpdateCommand(slug: string, options: CloudCommandOptions & { name: string; }): Promise; export declare function providersSetKeyCommand(slug: string, options: CloudCommandOptions & { key: string; }): Promise; export declare function providersSetCapabilityCommand(slug: string, modality: string, options: CloudCommandOptions & { model?: string; baseUrl?: string; modelsEndpoint?: string; }): Promise; export declare function providersSetDefaultCommand(slug: string, options?: CloudCommandOptions): Promise; export declare function providersDeleteCommand(slug: string, options?: CloudCommandOptions & { yes?: boolean; }): Promise; //# sourceMappingURL=manage.d.ts.map