ProjectsAgentsModelFactory.AgentsSkill Method

Definition

A skill resource.

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

Parameters

id
String

The unique identifier of the skill.

name
String

The unique name of the skill.

description
String

A human-readable description of the skill.

createdAt
DateTimeOffset

The Unix timestamp (seconds) when the skill was created.

defaultVersion
String

The default version for the skill. Can be changed via updateSkill.

latestVersion
String

The latest version for the skill.

Returns

A new AgentsSkill instance for mocking.

Applies to