2024-01-15 08:46:22 +08:00
|
|
|
#
|
2024-01-17 09:39:50 +08:00
|
|
|
# Copyright 2019 The RAG Flow Authors. All Rights Reserved.
|
2024-01-15 08:46:22 +08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
2023-12-25 19:05:59 +08:00
|
|
|
from abc import ABC
|
2023-12-28 13:50:13 +08:00
|
|
|
from openai import OpenAI
|
2023-12-25 19:05:59 +08:00
|
|
|
import os
|
|
|
|
|
2023-12-28 13:50:13 +08:00
|
|
|
|
2023-12-25 19:05:59 +08:00
|
|
|
class Base(ABC):
|
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
raise NotImplementedError("Please implement encode method!")
|
|
|
|
|
|
|
|
|
|
|
|
class GptTurbo(Base):
|
|
|
|
def __init__(self):
|
2023-12-28 13:50:13 +08:00
|
|
|
self.client = OpenAI(api_key=os.environ["OPENAI_API_KEY"])
|
2023-12-25 19:05:59 +08:00
|
|
|
|
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
history.insert(0, {"role": "system", "content": system})
|
2023-12-28 13:50:13 +08:00
|
|
|
res = self.client.chat.completions.create(
|
|
|
|
model="gpt-3.5-turbo",
|
|
|
|
messages=history,
|
|
|
|
**gen_conf)
|
2023-12-25 19:05:59 +08:00
|
|
|
return res.choices[0].message.content.strip()
|
|
|
|
|
|
|
|
|
2023-12-28 13:50:13 +08:00
|
|
|
class QWenChat(Base):
|
2023-12-25 19:05:59 +08:00
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
from http import HTTPStatus
|
|
|
|
from dashscope import Generation
|
2023-12-26 19:32:06 +08:00
|
|
|
# export DASHSCOPE_API_KEY=YOUR_DASHSCOPE_API_KEY
|
2023-12-28 13:50:13 +08:00
|
|
|
history.insert(0, {"role": "system", "content": system})
|
2023-12-25 19:05:59 +08:00
|
|
|
response = Generation.call(
|
2023-12-28 13:50:13 +08:00
|
|
|
Generation.Models.qwen_turbo,
|
|
|
|
messages=history,
|
|
|
|
result_format='message'
|
2023-12-25 19:05:59 +08:00
|
|
|
)
|
|
|
|
if response.status_code == HTTPStatus.OK:
|
|
|
|
return response.output.choices[0]['message']['content']
|
|
|
|
return response.message
|