poe api gpt-4

This commit is contained in:
t.me/xtekky
2023-03-29 21:10:42 +01:00
parent 81e033023e
commit 1396122423
36 changed files with 1411 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
query ChatPaginationQuery($bot: String!, $before: String, $last: Int! = 10) {
chatOfBot(bot: $bot) {
id
__typename
messagesConnection(before: $before, last: $last) {
pageInfo {
hasPreviousPage
}
edges {
node {
id
__typename
messageId
text
linkifiedText
authorNickname
state
vote
voteReason
creationTime
suggestedReplies
}
}
}
}
}