Turn off gpt for now, its not working
This commit is contained in:
parent
111ba07190
commit
ee11595cb7
78
app/bot.py
78
app/bot.py
@ -10,6 +10,7 @@ intents.message_content = True
|
||||
intents.members = True
|
||||
intents.reactions = True
|
||||
bot = commands.Bot(command_prefix="!", intents=intents)
|
||||
requests_cache.install_cache(expire_after=300)
|
||||
|
||||
cogfiles = [
|
||||
f"cogs.{filename[:-3]}"
|
||||
@ -21,9 +22,6 @@ for cogfile in cogfiles:
|
||||
bot.load_extension(cogfile)
|
||||
|
||||
|
||||
requests_cache.install_cache(expire_after=300)
|
||||
|
||||
|
||||
@bot.event
|
||||
async def on_ready():
|
||||
print(f"{bot.user.name} has connected to Discord!")
|
||||
@ -153,47 +151,47 @@ async def fix_social_media_links(ctx):
|
||||
return
|
||||
|
||||
|
||||
@bot.event
|
||||
async def on_message(ctx):
|
||||
if str(bot.user.id) in ctx.content:
|
||||
# @bot.event
|
||||
# async def on_message(ctx):
|
||||
# if str(bot.user.id) in ctx.content:
|
||||
|
||||
url = "http://192.168.1.52:1337/v1/chat/completions"
|
||||
bot_prompt = (
|
||||
"You are a helpful assistant. You will answer questions conciesely"
|
||||
"and as detailed as possible. You are based out of the United states in California."
|
||||
)
|
||||
# url = "http://192.168.1.52:1337/v1/chat/completions"
|
||||
# bot_prompt = (
|
||||
# "You are a helpful assistant. You will answer questions conciesely"
|
||||
# "and as detailed as possible. You are based out of the United states in California."
|
||||
# )
|
||||
|
||||
payload = {
|
||||
"messages": [
|
||||
{
|
||||
"content": bot_prompt,
|
||||
"role": "system",
|
||||
},
|
||||
{
|
||||
"content": ctx.content.replace(str(bot.user.id), "").replace(
|
||||
"<@> ", ""
|
||||
),
|
||||
"role": "user",
|
||||
},
|
||||
],
|
||||
"model": "openchat-3.5-7b",
|
||||
"stream": False,
|
||||
"max_tokens": 4096,
|
||||
"stop": ["hello"],
|
||||
"frequency_penalty": 0,
|
||||
"presence_penalty": 0,
|
||||
"temperature": 0.7,
|
||||
"top_p": 0.95,
|
||||
}
|
||||
headers = {"Content-Type": "application/json"}
|
||||
# payload = {
|
||||
# "messages": [
|
||||
# {
|
||||
# "content": bot_prompt,
|
||||
# "role": "system",
|
||||
# },
|
||||
# {
|
||||
# "content": ctx.content.replace(str(bot.user.id), "").replace(
|
||||
# "<@> ", ""
|
||||
# ),
|
||||
# "role": "user",
|
||||
# },
|
||||
# ],
|
||||
# "model": "openchat-3.5-7b",
|
||||
# "stream": False,
|
||||
# "max_tokens": 4096,
|
||||
# "stop": ["hello"],
|
||||
# "frequency_penalty": 0,
|
||||
# "presence_penalty": 0,
|
||||
# "temperature": 0.7,
|
||||
# "top_p": 0.95,
|
||||
# }
|
||||
# headers = {"Content-Type": "application/json"}
|
||||
|
||||
response = requests.post(url, json=payload, headers=headers)
|
||||
# response = requests.post(url, json=payload, headers=headers)
|
||||
|
||||
await ctx.reply(
|
||||
response.json()["choices"][0]["message"]["content"].replace(
|
||||
"<|end_of_turn|>", ""
|
||||
)
|
||||
)
|
||||
# await ctx.reply(
|
||||
# response.json()["choices"][0]["message"]["content"].replace(
|
||||
# "<|end_of_turn|>", ""
|
||||
# )
|
||||
# )
|
||||
|
||||
|
||||
bot.run(os.getenv("discord_token"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user