소스 검색

fix: init image api for bot

master
lanvent 1 년 전
부모
커밋
38c901a1c5
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      bot/chatgpt/chat_gpt_bot.py
  2. +1
    -0
      bot/openai/open_ai_bot.py

+ 1
- 0
bot/chatgpt/chat_gpt_bot.py 파일 보기

@@ -16,6 +16,7 @@ import time
# OpenAI对话模型API (可用)
class ChatGPTBot(Bot,OpenAIImage):
def __init__(self):
super().__init__()
openai.api_key = conf().get('open_ai_api_key')
if conf().get('open_ai_api_base'):
openai.api_base = conf().get('open_ai_api_base')


+ 1
- 0
bot/openai/open_ai_bot.py 파일 보기

@@ -14,6 +14,7 @@ user_session = dict()
# OpenAI对话模型API (可用)
class OpenAIBot(Bot, OpenAIImage):
def __init__(self):
super().__init__()
openai.api_key = conf().get('open_ai_api_key')
if conf().get('open_ai_api_base'):
openai.api_base = conf().get('open_ai_api_base')


Loading…
취소
저장