Skip to content

mergeObjectAgent

Package

@graphai/vanilla

Source

https://github.com/receptron/graphai/blob/main/agents/vanilla_agents/src/data_agents/merge_objects_agent.ts

Description

Returns namedInputs

Schema

inputs

json

{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "An array of objects whose key-value pairs will be merged into a single object. Later objects override earlier ones on key conflict.",
      "items": {
        "type": "object",
        "description": "An individual object contributing to the merged result."
      }
    }
  },
  "required": [
    "items"
  ],
  "additionalProperties": false
}

output

json

{
  "anyOf": {
    "type": "object"
  }
}

Input example of the next node

json

[
  ":agentId",
  ":agentId.color",
  ":agentId.model"
]

Samples

Sample0

inputs

json

{
  "items": [
    {
      "color": "red"
    },
    {
      "model": "Model 3"
    }
  ]
}

params

json

{}

result

json

{
  "color": "red",
  "model": "Model 3"
}

Author

Receptron team

Repository

https://github.com/receptron/graphai

License

MIT

Released under the MIT License.