interface MessageAnAgentV1NodeParameters {
advanced?: {
allowOtherNodesData?: boolean;
invokeMode?: "allItems" | "perItem";
sessionId?: string;
};
agentId?: { mode: "id"
| "list"; value: string };
jsonSchemaExample?: string;
message?: string;
outputSchema?: string;
schemaType?: "manual" | "fromJson";
useStructuredOutput?: boolean;
}
Properties§
§
§
§
§
§
§
§
readonly advanced?: { ... }
readonly agent Id?: { ... }
The agent to send the message to Default: {"mode":"list","value":""}
readonly json Schema Example?: string
Example JSON object used to generate the output schema Default: "{\n "result": "The result of the task"\n}" Type options: {"rows":10}
readonly message?: string
The message to send to the agent Type options: {"rows":4}
readonly output Schema?: string
The JSON Schema that the agent response must conform to Default: "{\n "type": "object",\n "properties": {\n "result": {\n "type": "string",\n "description": "The result of the task"\n }\n },\n "required": ["result"]\n}" Type options: {"rows":10}
readonly schema Type?: "manual" | "fromJson"
How to specify the structured output schema Default: "fromJson"
readonly use Structured Output?: boolean
Whether to constrain the agent response to a JSON Schema you provide. The conforming object is returned on the "structuredOutput" field.
Default: {}