generative-ts

Interface MistralBedrockResponse

interface MistralBedrockResponse {
    outputs: {
        stop_reason: string;
        text: string;
    }[];
}

Hierarchy

  • TypeOf<typeof MistralBedrockResponseCodec>
    • MistralBedrockResponse

Properties

Properties

outputs: {
    stop_reason: string;
    text: string;
}[]

Type declaration

  • stop_reason: string
  • text: string