Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 4.19 KB

File metadata and controls

31 lines (26 loc) · 4.19 KB

UpdateAgentRequest

Example Usage

import { UpdateAgentRequest } from "@mistralai/mistralai/models/components";

let value: UpdateAgentRequest = {
  completionArgs: {
    responseFormat: {
      type: "text",
    },
  },
};

Fields

Field Type Required Description
instructions string Instruction prompt the model will follow during the conversation.
tools components.UpdateAgentRequestTool[] List of tools which are available to the model during the conversation.
completionArgs components.CompletionArgs White-listed arguments from the completion API
guardrails components.GuardrailConfig[] N/A
model string N/A
name string N/A
description string N/A
handoffs string[] N/A
deploymentChat boolean N/A
metadata Record<string, any> N/A
versionMessage string N/A