2024-01-15 08:46:22 +08:00
|
|
|
#
|
2024-01-19 19:51:57 +08:00
|
|
|
# Copyright 2024 The InfiniFlow 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
|
2024-02-27 14:57:34 +08:00
|
|
|
import openai
|
2023-12-25 19:05:59 +08:00
|
|
|
|
2023-12-28 13:50:13 +08:00
|
|
|
|
2023-12-25 19:05:59 +08:00
|
|
|
class Base(ABC):
|
2024-01-22 19:51:38 +08:00
|
|
|
def __init__(self, key, model_name):
|
|
|
|
pass
|
|
|
|
|
2023-12-25 19:05:59 +08:00
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
raise NotImplementedError("Please implement encode method!")
|
|
|
|
|
|
|
|
|
|
|
|
class GptTurbo(Base):
|
2024-01-22 19:51:38 +08:00
|
|
|
def __init__(self, key, model_name="gpt-3.5-turbo"):
|
|
|
|
self.client = OpenAI(api_key=key)
|
|
|
|
self.model_name = model_name
|
2023-12-25 19:05:59 +08:00
|
|
|
|
|
|
|
def chat(self, system, history, gen_conf):
|
2024-02-19 19:22:17 +08:00
|
|
|
if system: history.insert(0, {"role": "system", "content": system})
|
2024-02-27 14:57:34 +08:00
|
|
|
try:
|
|
|
|
res = self.client.chat.completions.create(
|
|
|
|
model=self.model_name,
|
|
|
|
messages=history,
|
|
|
|
**gen_conf)
|
|
|
|
return res.choices[0].message.content.strip(), res.usage.completion_tokens
|
|
|
|
except openai.APIError as e:
|
|
|
|
return "ERROR: "+str(e), 0
|
2023-12-25 19:05:59 +08:00
|
|
|
|
|
|
|
|
2024-01-22 19:51:38 +08:00
|
|
|
from dashscope import Generation
|
2023-12-28 13:50:13 +08:00
|
|
|
class QWenChat(Base):
|
2024-01-22 19:51:38 +08:00
|
|
|
def __init__(self, key, model_name=Generation.Models.qwen_turbo):
|
|
|
|
import dashscope
|
|
|
|
dashscope.api_key = key
|
|
|
|
self.model_name = model_name
|
|
|
|
|
2023-12-25 19:05:59 +08:00
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
from http import HTTPStatus
|
2024-02-19 19:22:17 +08:00
|
|
|
if system: history.insert(0, {"role": "system", "content": system})
|
2023-12-25 19:05:59 +08:00
|
|
|
response = Generation.call(
|
2024-01-22 19:51:38 +08:00
|
|
|
self.model_name,
|
2023-12-28 13:50:13 +08:00
|
|
|
messages=history,
|
2024-02-19 19:22:17 +08:00
|
|
|
result_format='message',
|
|
|
|
**gen_conf
|
2023-12-25 19:05:59 +08:00
|
|
|
)
|
|
|
|
if response.status_code == HTTPStatus.OK:
|
2024-01-23 19:45:36 +08:00
|
|
|
return response.output.choices[0]['message']['content'], response.usage.output_tokens
|
2024-02-27 14:57:34 +08:00
|
|
|
return "ERROR: " + response.message, 0
|
2024-02-08 17:01:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
from zhipuai import ZhipuAI
|
|
|
|
class ZhipuChat(Base):
|
|
|
|
def __init__(self, key, model_name="glm-3-turbo"):
|
|
|
|
self.client = ZhipuAI(api_key=key)
|
|
|
|
self.model_name = model_name
|
|
|
|
|
|
|
|
def chat(self, system, history, gen_conf):
|
|
|
|
from http import HTTPStatus
|
2024-02-19 19:22:17 +08:00
|
|
|
if system: history.insert(0, {"role": "system", "content": system})
|
2024-02-08 17:01:01 +08:00
|
|
|
response = self.client.chat.completions.create(
|
|
|
|
self.model_name,
|
2024-02-19 19:22:17 +08:00
|
|
|
messages=history,
|
|
|
|
**gen_conf
|
2024-02-08 17:01:01 +08:00
|
|
|
)
|
|
|
|
if response.status_code == HTTPStatus.OK:
|
|
|
|
return response.output.choices[0]['message']['content'], response.usage.completion_tokens
|
2024-02-27 14:57:34 +08:00
|
|
|
return "ERROR: " + response.message, 0
|