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 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",