Skip to content

Commit

Permalink
Update the schema
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Dec 18, 2024
1 parent 8f87e95 commit 45fb1f8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1374,6 +1374,7 @@ type Prompt implements Node {
name: String!
description: String
createdAt: DateTime!
promptVersions(first: Int = 50, last: Int, after: String, before: String): PromptVersionConnection!
}

"""A connection to a list of items."""
Expand Down Expand Up @@ -1405,11 +1406,12 @@ type PromptResponse {
enum PromptTemplateFormat {
MUSTACHE
FSTRING
NONE
}

enum PromptTemplateType {
TEXT
JSON
STRING
CHAT
}

type PromptVersion implements Node {
Expand Down Expand Up @@ -1463,7 +1465,6 @@ type Query {
node(id: GlobalID!): Node!
viewer: User
prompts(first: Int = 50, last: Int, after: String, before: String): PromptConnection!
promptVersions(first: Int = 50, last: Int, after: String, before: String): PromptVersionConnection!
clusters(clusters: [ClusterInput!]!): [Cluster!]!
hdbscanClustering(
"""Event ID of the coordinates"""
Expand Down

0 comments on commit 45fb1f8

Please sign in to comment.