From 6986a507112dc79fcf2d73cb6e95e59be0eb3730 Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Fri, 1 Nov 2024 11:38:12 -0700 Subject: [PATCH] Update LangGraph Server API docs (#2300) --- docs/docs/cloud/reference/api/openapi.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/docs/docs/cloud/reference/api/openapi.json b/docs/docs/cloud/reference/api/openapi.json index 02dc13814..2ad201052 100644 --- a/docs/docs/cloud/reference/api/openapi.json +++ b/docs/docs/cloud/reference/api/openapi.json @@ -304,10 +304,19 @@ "description": "The ID of the assistant.", "required": true, "schema": { - "type": "string", - "format": "uuid", - "title": "Assistant ID", - "description": "The ID of the assistant." + "anyOf": [ + { + "type": "string", + "format": "uuid", + "title": "Assistant ID", + "description": "The ID of the assistant." + }, + { + "type": "string", + "title": "Graph ID", + "description": "The ID of the graph." + } + ] }, "name": "assistant_id", "in": "path"