Add openai module
This commit is contained in:
parent
ac432fabcc
commit
23f043673f
@ -5,7 +5,7 @@ WORKDIR /usr/src/app
|
|||||||
COPY requirements.txt /usr/src/app/
|
COPY requirements.txt /usr/src/app/
|
||||||
RUN apk add --no-cache bash build-base capstone-dev mandoc-doc man-db w3m youtube-dl aspell aspell-fr && \
|
RUN apk add --no-cache bash build-base capstone-dev mandoc-doc man-db w3m youtube-dl aspell aspell-fr && \
|
||||||
pip install --no-cache-dir -r requirements.txt && \
|
pip install --no-cache-dir -r requirements.txt && \
|
||||||
pip install bs4 capstone dnspython && \
|
pip install bs4 capstone dnspython openai && \
|
||||||
apk del build-base capstone-dev && \
|
apk del build-base capstone-dev && \
|
||||||
ln -s /var/lib/nemubot/home /home/nemubot
|
ln -s /var/lib/nemubot/home /home/nemubot
|
||||||
|
|
||||||
|
60
modules/openai.py
Normal file
60
modules/openai.py
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
"""Perform requests to openai"""
|
||||||
|
|
||||||
|
# PYTHON STUFFS #######################################################
|
||||||
|
|
||||||
|
from openai import OpenAI
|
||||||
|
|
||||||
|
from nemubot import context
|
||||||
|
from nemubot.hooks import hook
|
||||||
|
|
||||||
|
from nemubot.module.more import Response
|
||||||
|
|
||||||
|
|
||||||
|
# LOADING #############################################################
|
||||||
|
|
||||||
|
CLIENT = None
|
||||||
|
MODEL = "gpt-4"
|
||||||
|
ENDPOINT = None
|
||||||
|
|
||||||
|
def load(context):
|
||||||
|
global CLIENT, ENDPOINT, MODEL
|
||||||
|
if not context.config or ("apikey" not in context.config and "endpoint" not in context.config):
|
||||||
|
raise ImportError ("You need a OpenAI API key in order to use "
|
||||||
|
"this module. Add it to the module configuration: "
|
||||||
|
"\n<module name=\"openai\" "
|
||||||
|
"apikey=\"XXXXXX-XXXXXXXXXX\" endpoint=\"https://...\" model=\"gpt-4\" />")
|
||||||
|
kwargs = {
|
||||||
|
"api_key": context.config["apikey"] or "",
|
||||||
|
}
|
||||||
|
|
||||||
|
if "endpoint" in context.config:
|
||||||
|
ENDPOINT = context.config["endpoint"]
|
||||||
|
kwargs["base_url"] = ENDPOINT
|
||||||
|
|
||||||
|
CLIENT = OpenAI(**kwargs)
|
||||||
|
|
||||||
|
if "model" in context.config:
|
||||||
|
MODEL = context.config["model"]
|
||||||
|
|
||||||
|
|
||||||
|
# MODULE INTERFACE ####################################################
|
||||||
|
|
||||||
|
@hook.ask()
|
||||||
|
def parseask(msg):
|
||||||
|
chat_completion = CLIENT.chat.completions.create(
|
||||||
|
messages=[
|
||||||
|
{
|
||||||
|
"role": "system",
|
||||||
|
"content": "You are a kind multilingual assistant. Respond to the user request in 255 characters maximum. Be conscise, go directly to the point. Never add useless terms.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"role": "user",
|
||||||
|
"content": msg.message,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
model=MODEL,
|
||||||
|
)
|
||||||
|
|
||||||
|
return Response(chat_completion.choices[0].message.content,
|
||||||
|
msg.channel,
|
||||||
|
msg.frm)
|
Loading…
x
Reference in New Issue
Block a user