ProjectsAgentsModelFactory.ReminderPreviewTool(String, String) Method

Definition

A built-in tool that schedules the agent to re-invoke itself after a delay. The model passes a single minutes argument (positive integer) when calling this tool. The service creates a one-shot timer routine that fires after the specified delay and re-invokes the agent on the same conversation thread. No pre-created routine is required.

public static Azure.AI.Projects.Agents.ReminderPreviewTool ReminderPreviewTool(string name = default, string description = default);
static member ReminderPreviewTool : string * string -> Azure.AI.Projects.Agents.ReminderPreviewTool
Public Shared Function ReminderPreviewTool (Optional name As String = Nothing, Optional description As String = Nothing) As ReminderPreviewTool

Parameters

name
String

Optional user-defined name for this tool or configuration.

description
String

Optional user-defined description for this tool or configuration.

Returns

A new ReminderPreviewTool instance for mocking.

Applies to