{
  "version": 3,
  "actions": [
    {
      "id": "M365Copilot.Agent.Actions",
      "description": "ms-resource://Resources/AgentRegistrationDescription",
      "usesGenerativeAI": true,
      "allowedAppInvokers": ["*"],
      "inputs": [
        {
          "name": "agentName",
          "kind": "Text"
        },
        {
          "name": "prompt",
          "kind": "Text"
        },
        {
          "name": "attachedFile",
          "kind": "File"
        }
      ],
      "inputCombinations": [
        {
          "inputs": ["agentName", "prompt"],
          "description": "Start M365 Copilot Agent with '${agentName.Text}'."
        },
        {
          "inputs": ["agentName", "prompt", "attachedFile"],
          "description": "Start M365 Copilot Agent with '${agentName.Text}' and additional context."
        }
      ],
      "outputs": [],
      "invocation": {
        "type": "Uri",
        "uri": "ms-getoffice:invokeAgent?agentName=${agentName.Text}&prompt=${prompt.Text}&context=${attachedFile.Path}"
      }
    }
  ]
}
