import type { ModelApi, ModelRequestOptions } from "@typeDefs"; import { FnTemplate } from "../../utils/Template"; import type { FewShotRequestOptions } from "../shared"; import { LlamaResponse } from "./llama"; /** * @category Requests * @category Llama3 */ export interface Llama3ChatOptions extends FewShotRequestOptions, ModelRequestOptions { temperature?: number; top_p?: number; max_gen_len?: number; } /** * @category Templates * @category Llama3 */ export declare const Llama3ChatTemplate: FnTemplate; export interface Llama3ChatApi extends ModelApi { } /** * * ## Reference * [LLama3](https://llama.meta.com/docs/model-cards-and-prompt-formats/meta-llama-3) * * ## Providers using this API * - {@link createAwsBedrockModelProvider | AWS Bedrock} * * @category APIs * @category Llama3 * @category Provider: AWS Bedrock * */ export declare const Llama3ChatApi: Llama3ChatApi;