PoeBotEditMutation.graphql 840 B

123456789101112131415161718192021222324
  1. mutation EditBotMain_poeBotEdit_Mutation(
  2. $botId: BigInt!
  3. $handle: String!
  4. $description: String!
  5. $introduction: String!
  6. $isPromptPublic: Boolean!
  7. $baseBot: String!
  8. $profilePictureUrl: String
  9. $prompt: String!
  10. $apiUrl: String
  11. $apiKey: String
  12. $hasLinkification: Boolean
  13. $hasMarkdownRendering: Boolean
  14. $hasSuggestedReplies: Boolean
  15. $isPrivateBot: Boolean
  16. ) {
  17. poeBotEdit(botId: $botId, handle: $handle, description: $description, introduction: $introduction, isPromptPublic: $isPromptPublic, model: $baseBot, promptPlaintext: $prompt, profilePicture: $profilePictureUrl, apiUrl: $apiUrl, apiKey: $apiKey, hasLinkification: $hasLinkification, hasMarkdownRendering: $hasMarkdownRendering, hasSuggestedReplies: $hasSuggestedReplies, isPrivateBot: $isPrivateBot) {
  18. status
  19. bot {
  20. handle
  21. id
  22. }
  23. }
  24. }
粤ICP备19079148号