Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ModelSettings

import type { ModelSettings } from "https://googleapis.deno.dev/v1/ces:v1.ts";

Model settings contains various configurations for the LLM model.

interface ModelSettings {
model?: string;
temperature?: number;
}

§Properties

§
model?: string
[src]

Optional. The LLM model that the agent should use. If not set, the agent will inherit the model from its parent agent.

§
temperature?: number
[src]

Optional. If set, this temperature will be used for the LLM model. Temperature controls the randomness of the model's responses. Lower temperatures produce responses that are more predictable. Higher temperatures produce responses that are more creative.