Skip to content

Latest commit

 

History

History
87 lines (55 loc) · 689 Bytes

nestedAgent.md

File metadata and controls

87 lines (55 loc) · 689 Bytes

nestedAgent

Description

nested Agent

Schema

inputs

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "message"
  ]
}

Input example of the next node

[
  ":agentId",
  ":agentId.test",
  ":agentId.test.$0"
]

Samples

Sample0

inputs

{
  "message": "hello"
}

params

{}

result

{
  "test": [
    "hello"
  ]
}

Author

Receptron team

Repository

https://github.com/receptron/graphai

License

MIT