Skip to content

Latest commit

 

History

History
83 lines (59 loc) · 890 Bytes

anthropicAgent.md

File metadata and controls

83 lines (59 loc) · 890 Bytes

anthropicAgent

Description

Anthropic Agent

Schema

inputs

{
  "type": "object",
  "properties": {
    "model": {
      "type": "string"
    },
    "system": {
      "type": "string"
    },
    "max_tokens": {
      "type": "number"
    },
    "temperature": {
      "type": "number"
    },
    "prompt": {
      "type": "string",
      "description": "query string"
    },
    "messages": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        },
        {
          "type": "object"
        },
        {
          "type": "array"
        }
      ],
      "description": "chat messages"
    }
  }
}

output

{
  "type": "object"
}

Input example of the next node

Samples

Author

Receptron team

Repository

https://github.com/receptron/graphai

License

MIT