Skip to content

Added supportedInput and supportedOutput fields #10

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
16 changes: 16 additions & 0 deletions agent-specification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,22 @@ components:
- Reinforcement Learning
- Fine Tuning

supportedInput:
type: array
description: List of supported input formats or content types.
items:
type: string
enum: [text, images, video, files]
examples: [["text", "images"]]
Comment on lines +263 to +265
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you declare this as a type and reuse for input and output fields?


supportedOutput:
type: array
description: List of supported output formats or content types.
items:
type: string
enum: [text, images, video, files]
examples: [["text", "files"]]

endpoint:
type: object
description: Defines where external systems or users can communicate with the agent.
Expand Down
2 changes: 2 additions & 0 deletions examples/health-care.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ runMode: "Reactive"
agencyLevel: "ModelDrivenWorkflow"
toolsUse: true
learningCapability: "Fine Tuning"
supportedInput: ["text"]
supportedOutput: ["text"]

endpoint:
apiUrl: "https://api.healthcareai.org/diagnostics/v3"
Expand Down
4 changes: 4 additions & 0 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ The agent descriptor follows an **OpenAPI 3.0-based** schema to enable easy docu
- `ModelDrivenWorkflow`: the agent is implement as a workflow. The execution through the workflow is controlled by LLMs.
- `toolsUse` *(string)* – Define if the system can use tools in order to execute its task. Values: true/false.
- `learningCapability` *(string)* – Learning approach (None, Reinforcement Learning, Fine Tuning).
- `supportedInput` *(array)* – List of supported output formats or content types (e.g., text, images, video, files).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- `supportedInput` *(array)* – List of supported output formats or content types (e.g., text, images, video, files).
- `supportedInput` *(array)* – List of supported input formats or content types (e.g., text, images, video, files).

- `supportedOutput` *(array)* – List of supported output formats or content types (e.g., text, images, video, files)

### **Technical Configuration**
- `physicalEndpoint` *(object)* – Defines where and how external systems interact with the agent.
Expand Down Expand Up @@ -92,6 +94,8 @@ executionMode: "Autonomous"
runMode: "RealTime"
agencyLevel: "Rule Constrained"
learningCapability: "Reinforcement Learning"
supportedInput: ["text"]
supportedOutput: ["text"]

physicalEndpoint:
apiUrl: "https://api.tradingagent.com/v1"
Expand Down