XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/gpt4free

Create PoeBotEditMutation.graphql

9f5552b1
t.me/xtekky <98614666+xtekky@users.noreply.github.com>
提交于

代码差异

1 个文件 +24 -0
Added quora/graphql/PoeBotEditMutation.graphql +24 -0
@@ -0,0 +1,24 @@
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 }