Skip to content

Fix interactionMode enum and description #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion agent-specification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,12 @@ components:
interactionMode:
type: string
description: Mode of execution (e.g., autonomous, human in the loop).
examples: ["Autonoumous"]
examples: ["Autonomous"]
enum:
- RequestResponse
- MultiTurnConversation
- HumanInTheLoop
- Autonomous

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