From 09801af16da84123a4847e893ec54364597c19fd Mon Sep 17 00:00:00 2001 From: Bram Jans Date: Mon, 18 May 2026 10:03:16 +0200 Subject: [PATCH 1/2] chore: Update GraphQL schema --- openhexa/graphql/schema.generated.graphql | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/openhexa/graphql/schema.generated.graphql b/openhexa/graphql/schema.generated.graphql index 4ea62277..37d4e78b 100644 --- a/openhexa/graphql/schema.generated.graphql +++ b/openhexa/graphql/schema.generated.graphql @@ -1154,6 +1154,7 @@ enum CreateWebappError { """Represents the input for creating a web app.""" input CreateWebappInput { + allowedOperations: [WebappOperationScope!] description: String icon: String isPublic: Boolean @@ -2984,7 +2985,6 @@ type Mutation { """Runs a pipeline.""" runPipeline(input: RunPipelineInput): RunPipelineResult! - sendAssistantMessage(input: SendAssistantMessageInput!): SendAssistantMessageResult! setDAGRunFavorite(input: SetDAGRunFavoriteInput!): SetDAGRunFavoriteResult """Set a custom metadata attribute to an object instance""" @@ -4188,18 +4188,6 @@ interface SearchResult { score: Float! } -input SendAssistantMessageInput { - conversationId: UUID! - message: String! -} - -type SendAssistantMessageResult { - conversation: AssistantConversation - errors: [String!]! - message: AssistantMessage - success: Boolean! -} - enum SetDAGRunFavoriteError { INVALID MISSING_LABEL From 87c4858e388e5f0a77560766b3c8c3bc88e76cc4 Mon Sep 17 00:00:00 2001 From: Bram Jans Date: Mon, 18 May 2026 10:12:04 +0200 Subject: [PATCH 2/2] Relax version requirements for requests lib --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d6e9ccbd..971b8826 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ requires-python = ">=3.11,<3.15" # the main constraint for supported Python vers dependencies = [ "urllib3<3", "multiprocess~=0.70.15", - "requests>=2.31,<2.34", + "requests>=2.31,<2.35", "PyYAML~=6.0", "click~=8.1.3", "jinja2>3,<4",