Skip to content

Commit eddcb43

Browse files
authored
Fix interactionMode enum and description (#8)
* added Autonomous in the interactionMode enum * fix: correct enum description and reference for interactionMode
1 parent 2ad3ac5 commit eddcb43

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

agent-specification.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,12 @@ components:
220220
interactionMode:
221221
type: string
222222
description: Mode of execution (e.g., autonomous, human in the loop).
223-
examples: ["Autonoumous"]
223+
examples: ["Autonomous"]
224224
enum:
225225
- RequestResponse
226226
- MultiTurnConversation
227227
- HumanInTheLoop
228+
- Autonomous
228229

229230
runMode:
230231
type: string

spec.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ The agent descriptor follows an **OpenAPI 3.0-based** schema to enable easy docu
3737
- `RequestResponse` a single request-response call
3838
- `MultiTurnConversation` a session with multi-turn conversation
3939
- `HumanInTheLoop` can ask human confirmation before taking an action
40+
- `Autonomous` acts independently without requiring human intervention
4041
- `runMode` *(string)* – The modality how the agent execution is triggered. Values:
4142
- `Reactive`: the agent is called by an event such an API request
4243
- `Scheduled`: the agent runs at fixed scheduled times
@@ -88,7 +89,7 @@ status: ACTIVE
8889
kind: Single Agent
8990
agentGoal: "Optimize returns while managing portfolio risk."
9091
valueGeneration: ["DecisionMaking", "Derisking"]
91-
executionMode: "Autonomous"
92+
interactionMode: "Autonomous"
9293
runMode: "RealTime"
9394
agencyLevel: "Rule Constrained"
9495
learningCapability: "Reinforcement Learning"

0 commit comments

Comments
 (0)