local.d.ts 310 B

123456789
  1. import type { LlamaCpp } from "../llm.js";
  2. export type LocalLlamaCppProviderConfig = {
  3. llm?: LlamaCpp;
  4. modelId?: string;
  5. };
  6. /** Historical direct-import symbol. It is not part of the package API. */
  7. export declare class LocalLlamaCppProvider {
  8. constructor(_config?: LocalLlamaCppProviderConfig);
  9. }