gpt4 book ai didi

python - 斜杠命令不适用于带有 discord bot 的 openai

转载 作者:行者123 更新时间:2023-12-02 22:45:39 25 4
gpt4 key购买 nike

我在我的个人机器人上有这个命令,它根据不和谐的用户提示生成图像,但是当我把它变成斜线命令时,出现错误,我已经做了测试,图像很好,但它从未发送图片返回

工作代码

@client.command(aliases=['gen'])
async def genimage(ctx, *, ideel):
print("reg: " + ideel)
response = openai.Image.create(
prompt=ideel,
n=1,
size="1024x1024")
image_url = response['data'][0]['url']
print(image_url)
print(" ")
await ctx.send(image_url)

非工作代码

@slash.slash(name="gen")
async def gen(ctx, *, ideasl):
print("slash: " + ideasl)
response = openai.Image.create(
prompt=ideasl,
n=1,
size="1024x1024")
image_urll = response['data'][0]['url']
print(image_urll)
print(" ")
await ctx.send(image_urll)

控制台

reg: dog cat
https://oaidalleapiprodscus.blob.core.windows.net/private/org-C8Nv06yDvE0bz1w78n80B2a9/user-rzBkmNENqDdD8oHXFf9VWfNh/img-6mmEETlF8a5bA7B4hUI46nSE.png?st=2022-11-12T14%3A22%3A00Z&se=2022-11-12T16%3A22%3A00Z&sp=r&sv=2021-08-06&sr=b&rscd=inline&rsct=image/png&skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2022-11-11T23%3A38%3A17Z&ske=2022-11-12T23%3A38%3A17Z&sks=b&skv=2021-08-06&sig=6MuyNRj6MDOalZLJOD9/1TwX2KbJAJJSCsMvRqgaC5c%3D

slash: dog cat
https://oaidalleapiprodscus.blob.core.windows.net/private/org-C8Nv06yDvE0bz1w78n80B2a9/user-rzBkmNENqDdD8oHXFf9VWfNh/img-bUNRJwcIjhFcYf3xywxE96Aw.png?st=2022-11-12T14%3A22%3A31Z&se=2022-11-12T16%3A22%3A31Z&sp=r&sv=2021-08-06&sr=b&rscd=inline&rsct=image/png&skoid=6aaadede-4fb3-4698-a8f6-684d7786b067&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2022-11-12T03%3A02%3A46Z&ske=2022-11-13T03%3A02%3A46Z&sks=b&skv=2021-08-06&sig=cAOqhtWoe5VIq0ITY0%2BPhBRUZb%2BsLj%2BVy%2BarZe9OHsk%3D

An exception has occurred while executing command `gen`:
Traceback (most recent call last):
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord_slash/client.py", line 1352, in invoke_command
await func.invoke(ctx, **args)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord_slash/model.py", line 210, in invoke
return await self.func(*args, **kwargs)
File "main.py", line 42, in gen
await ctx.send(image_urll)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord_slash/context.py", line 256, in send
await self._http.post_initial_response(json_data, self.interaction_id, self._token)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/discord/http.py", line 243, in request
raise NotFound(r, data)
discord.errors.NotFound: 404 Not Found (error code: 10062): Unknown interaction

example of command

在代码中使用斜线命令的例子

@slash.slash(name="modapp")
async def enbed(ctx: SlashContext):
embed = Embed(title="Mod Applications.", url="https://www.youtube.com/watch?v=QB7ACr7pUuE", description="Click above to apply for mod.")
await ctx.send(embed=embed)

image of working code

我尝试运行这两个命令,除了返回斜线命令的图像之外,所有的工作都在这两个命令上进行

完整代码

import discord
import random
import os
import openai
import json
import math
from discord.ext import commands, tasks
from itertools import cycle
from random import choice
from math import pi
from keep_alive import keep_alive
from discord import Client, Intents, Embed
from discord_slash import SlashCommand, SlashContext
openai.api_key = os.getenv("teken")
openai.Model.list()

client = commands.Bot(command_prefix = '+',intents=Intents.default())
status = cycle(['with life','with death'])
slash = SlashCommand(client, sync_commands=True)

#slash commands
@slash.slash(name="modapp")
async def enbed(ctx: SlashContext):
embed = Embed(title="Mod Applications.", url="https://www.youtube.com/watch?v=QB7ACr7pUuE", description="Click above to apply for mod.")
await ctx.send(embed=embed)

@slash.slash(name="sus")
async def simp(ctx: SlashContext):
image="index.jpg"
await ctx.send(file=discord.File(image))

@slash.slash(name="gen")
async def gen(ctx, *, ideasl):
print("slash: " + ideasl)
response = openai.Image.create(
prompt=ideasl,
n=1,
size="1024x1024")
image_urll = response['data'][0]['url']
print(image_urll)
print(" ")
await ctx.send(image_urll)

#events
@client.event
async def on_ready():
change_status.start()
print('We have logged in as {0.user}'.format(client))
print(" ")

@client.event
async def on_command_error(ctx, error):
if isinstance(error, commands.MissingRequiredArgument):
await ctx.send('Please Put In The Required Argument!')
elif isinstance(error, commands.MissingPermissions):
await ctx.send("Don't cheat the System Please!")

#tasks
@tasks.loop(seconds=10)
async def change_status():
await client.change_presence(activity=discord.Game(next(status)))

#commands
@client.command()
async def ping(ctx):
await ctx.send(f'Pong! {round(client.latency * 1000)}ms')

@client.command()
async def hello(ctx):
await ctx.send('Hi!')

@client.command(aliases=['8ball'])
async def _8ball(ctx, *, question):
responses = ['Definitely', 'Maybe', 'Absolutely Not']
await ctx.send(f'Question: {question}\nAwnswer: {random.choice(responses)}')
print (f'Question: {question}')
print(" ")

@client.command(aliases=['gen'])
async def genimage(ctx, *, ideel):
print("reg: " + ideel)
response = openai.Image.create(
prompt=ideel,
n=1,
size="1024x1024")
image_url = response['data'][0]['url']
print(image_url)
print(" ")
await ctx.send(image_url)


@client.command()
async def roll(ctx, *, dicesize):
await ctx.send(f'You rolled a d{dicesize}\nYou got a {random.randint(1,int(dicesize))}')

@client.command()
async def calculator(ctx):
await ctx.send('https://replit.com/@Hoadi605/Calculator#main.py')

@client.command()
async def testss(ctx):
await ctx.send('this was a rickroll')

@client.command()
async def idea(ctx, *,idean):
ideeees = open('ideaas.txt', 'a+')
ideeees.write(f'{idean}\n')
ideeees.close

@client.command()
async def ideas(ctx):
ideeees = open('ideaas.txt', 'r')
cheeese = ideeees.read()
await ctx.send(cheeese)
ideeees.close

@client.command()
async def pylearn(ctx):
await ctx.send('https://www.youtube.com/watch?v=rfscVS0vtbw&t=615s')

#MOVE
@client.command()
async def start_move(ctx):
move_them.start()

@client.command()
async def stop_move(ctx):
move_them.stop()

@tasks.loop(seconds=10)
async def move_them():
await client.move_member(next('336185999824650242', '801605503250595844'))

keep_alive()
client.run(os.getenv('TOKEN'))

最佳答案

您必须在 3 秒内响应交互,否则命令将失败。如果因为你正在做一些缓慢/密集的事情而需要更长的时间来响应——比如你使用 AI 或 API 调用生成图像——你可以延迟。推迟告诉 Discord“我已经收到互动,但我会稍后回复”。

注意:此代码块用于 discord.py,而不是 discord_slash,因为我从未使用过它。但是,想法是完全相同的,您只需在文档中查找函数名称即可。

# Deferring should be the FIRST thing you do
await interaction.response.defer()

here_be_slow_thing()

# Respond when your computation is complete
await interaction.followup.send_message("...")

附言。无需使用 discord_slash 或任何类似的东西,交互和斜杠命令内置于 discord.py 中,您会发现更多文档/示例/帮助官方解决方案。

关于python - 斜杠命令不适用于带有 discord bot 的 openai,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74414236/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com