Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions openhexa/graphql/schema.generated.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1154,6 +1154,7 @@ enum CreateWebappError {

"""Represents the input for creating a web app."""
input CreateWebappInput {
allowedOperations: [WebappOperationScope!]
description: String
icon: String
isPublic: Boolean
Expand Down Expand Up @@ -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"""
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading