agsamantha/node_modules/@langchain/community/dist/llms/bedrock/index.d.ts

8 lines
343 B
TypeScript
Raw Normal View History

2024-10-02 20:15:21 +00:00
import type { BaseLLMParams } from "@langchain/core/language_models/llms";
import { BaseBedrockInput } from "../../utils/bedrock/index.js";
import { Bedrock as BaseBedrock } from "./web.js";
export declare class Bedrock extends BaseBedrock {
static lc_name(): string;
constructor(fields?: Partial<BaseBedrockInput> & BaseLLMParams);
}