Edit

Share via


agentCapabilities resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Defines optional capabilities defined in the agent card manifest.

Properties

Property Type Description
extensions agentExtension collection A list of protocol extensions supported by the agent.
pushNotifications Boolean Indicates if the agent supports sending push notifications for asynchronous task updates.
stateTransitionHistory Boolean Indicates if the agent provides a history of state transitions for a task.
streaming Boolean Indicates if the agent supports Server-Sent Events (SSE) for streaming responses.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.agentCapabilities",
  "streaming": "Boolean",
  "pushNotifications": "Boolean",
  "stateTransitionHistory": "Boolean",
  "extensions": [
    {
      "@odata.type": "microsoft.graph.agentExtension"
    }
  ]
}