import * as t from "io-ts"; import type { TypeOf } from "io-ts"; declare const LlamaResponseCodec: t.TypeC<{ generation: t.StringC; prompt_token_count: t.NumberC; generation_token_count: t.NumberC; stop_reason: t.StringC; }>; /** * @category Llama2 * @category Llama3 * @category Responses */ export interface LlamaResponse extends TypeOf { } export declare function isLlamaResponse(response: unknown): response is LlamaResponse; export {};