-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ChatGPT対応 #2364
ChatGPT対応 #2364
Conversation
library/chat_gpt.py
Outdated
|
||
def chat_gpt(message: str) -> str: | ||
openai.api_key = conf.OPENAI_API_KEY | ||
result = openai.ChatCompletion.create(model="gpt-3.5-turbo", messages=[{"role": "user", "content": message}]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
本当は過去の会話とかも送った方がいいっぽいけど、一旦これで。
@@ -35,6 +35,7 @@ def analyze_message(message: str) -> Callable[[BaseClient], None]: | |||
"version": lambda m: hato.version, | |||
"にゃーん": lambda m: hato.yoshiyoshi, | |||
"おみくじ": lambda m: hato.omikuji, | |||
"chat": lambda m: partial(hato.chat, message=m[len("chat") :].strip()), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コマンドは再考の余地あり
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ai
とかそれっぽい説。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hato ai hogehoge
か、うーん。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chatが他と被らなさそうであれば、chatのほうがいいかな〜
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
かなり簡潔な実装で実現できてすごいって感じ。
ローカルでは動いてそうな気配