2023-11-21 20:25:47 +08:00
|
|
|
import time
|
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
|
|
from typing import Dict, List, Optional, Union
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
from opencompass.utils.prompt import PromptList
|
|
|
|
|
|
|
|
from .base_api import BaseAPIModel
|
|
|
|
|
|
|
|
PromptType = Union[PromptList, str]
|
|
|
|
|
|
|
|
|
|
|
|
class BaiChuan(BaseAPIModel):
|
|
|
|
"""Model wrapper around Baichuan.
|
|
|
|
|
|
|
|
Documentation: https://platform.baichuan-ai.com/docs/api
|
|
|
|
|
|
|
|
Args:
|
|
|
|
path (str): The name of Baichuan model.
|
|
|
|
e.g. `Baichuan2-53B`
|
|
|
|
api_key (str): Provided api key
|
|
|
|
url (str): Provide url
|
|
|
|
query_per_second (int): The maximum queries allowed per second
|
|
|
|
between two consecutive calls of the API. Defaults to 1.
|
|
|
|
max_seq_len (int): Unused here.
|
|
|
|
meta_template (Dict, optional): The model's meta prompt
|
|
|
|
template if needed, in case the requirement of injecting or
|
|
|
|
wrapping of any meta instructions.
|
|
|
|
retry (int): Number of retires if the API call fails. Defaults to 2.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
path: str,
|
|
|
|
api_key: str,
|
|
|
|
url: str,
|
|
|
|
query_per_second: int = 2,
|
|
|
|
max_seq_len: int = 2048,
|
|
|
|
meta_template: Optional[Dict] = None,
|
|
|
|
retry: int = 2,
|
2023-12-10 13:29:26 +08:00
|
|
|
generation_kwargs: Dict = {
|
|
|
|
'temperature': 0.3,
|
|
|
|
'top_p': 0.85,
|
|
|
|
'top_k': 5,
|
|
|
|
'with_search_enhance': False,
|
2024-01-24 13:35:21 +08:00
|
|
|
'stream': False,
|
2023-12-10 13:29:26 +08:00
|
|
|
}): # noqa E125
|
2023-11-21 20:25:47 +08:00
|
|
|
super().__init__(path=path,
|
|
|
|
max_seq_len=max_seq_len,
|
|
|
|
query_per_second=query_per_second,
|
|
|
|
meta_template=meta_template,
|
2023-12-10 13:29:26 +08:00
|
|
|
retry=retry,
|
|
|
|
generation_kwargs=generation_kwargs)
|
2023-11-21 20:25:47 +08:00
|
|
|
|
|
|
|
self.api_key = api_key
|
|
|
|
self.url = url
|
|
|
|
self.model = path
|
|
|
|
|
|
|
|
def generate(
|
|
|
|
self,
|
2024-04-09 17:50:23 +08:00
|
|
|
inputs: List[PromptType],
|
2023-11-21 20:25:47 +08:00
|
|
|
max_out_len: int = 512,
|
|
|
|
) -> List[str]:
|
|
|
|
"""Generate results given a list of inputs.
|
|
|
|
|
|
|
|
Args:
|
2024-04-09 17:50:23 +08:00
|
|
|
inputs (List[PromptType]): A list of strings or PromptDicts.
|
2023-11-21 20:25:47 +08:00
|
|
|
The PromptDict should be organized in OpenCompass'
|
|
|
|
API format.
|
|
|
|
max_out_len (int): The maximum length of the output.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List[str]: A list of generated strings.
|
|
|
|
"""
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
|
|
results = list(
|
|
|
|
executor.map(self._generate, inputs,
|
|
|
|
[max_out_len] * len(inputs)))
|
|
|
|
self.flush()
|
|
|
|
return results
|
|
|
|
|
|
|
|
def _generate(
|
|
|
|
self,
|
2024-04-09 17:50:23 +08:00
|
|
|
input: PromptType,
|
2023-11-21 20:25:47 +08:00
|
|
|
max_out_len: int = 512,
|
|
|
|
) -> str:
|
|
|
|
"""Generate results given an input.
|
|
|
|
|
|
|
|
Args:
|
2024-04-09 17:50:23 +08:00
|
|
|
inputs (PromptType): A string or PromptDict.
|
2023-11-21 20:25:47 +08:00
|
|
|
The PromptDict should be organized in OpenCompass'
|
|
|
|
API format.
|
|
|
|
max_out_len (int): The maximum length of the output.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The generated string.
|
|
|
|
"""
|
|
|
|
|
|
|
|
assert isinstance(input, (str, PromptList))
|
|
|
|
|
|
|
|
if isinstance(input, str):
|
|
|
|
messages = [{'role': 'user', 'content': input}]
|
|
|
|
else:
|
|
|
|
messages = []
|
|
|
|
for item in input:
|
|
|
|
msg = {'content': item['prompt']}
|
|
|
|
if item['role'] == 'HUMAN':
|
|
|
|
msg['role'] = 'user'
|
|
|
|
elif item['role'] == 'BOT':
|
|
|
|
msg['role'] = 'assistant'
|
|
|
|
|
|
|
|
messages.append(msg)
|
|
|
|
|
|
|
|
data = {'model': self.model, 'messages': messages}
|
2023-12-10 13:29:26 +08:00
|
|
|
data.update(self.generation_kwargs)
|
2023-11-21 20:25:47 +08:00
|
|
|
|
|
|
|
headers = {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Authorization': 'Bearer ' + self.api_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
max_num_retries = 0
|
|
|
|
while max_num_retries < self.retry:
|
|
|
|
self.acquire()
|
2024-01-24 13:35:21 +08:00
|
|
|
try:
|
|
|
|
raw_response = requests.request('POST',
|
|
|
|
url=self.url,
|
|
|
|
headers=headers,
|
|
|
|
json=data)
|
|
|
|
response = raw_response.json()
|
|
|
|
except Exception as err:
|
|
|
|
print('Request Error:{}'.format(err))
|
|
|
|
time.sleep(3)
|
|
|
|
continue
|
2023-11-21 20:25:47 +08:00
|
|
|
|
2024-01-24 13:35:21 +08:00
|
|
|
self.release()
|
|
|
|
# print(response.keys())
|
|
|
|
# print(response['choices'][0]['message']['content'])
|
2023-11-21 20:25:47 +08:00
|
|
|
if response is None:
|
|
|
|
print('Connection error, reconnect.')
|
|
|
|
# if connect error, frequent requests will casuse
|
|
|
|
# continuous unstable network, therefore wait here
|
|
|
|
# to slow down the request
|
|
|
|
self.wait()
|
|
|
|
continue
|
2024-01-24 13:35:21 +08:00
|
|
|
if raw_response.status_code == 200:
|
|
|
|
msg = response['choices'][0]['message']['content']
|
2024-05-14 22:42:23 +08:00
|
|
|
self.logger.debug(f'Generated: {msg}')
|
2023-11-21 20:25:47 +08:00
|
|
|
return msg
|
|
|
|
|
2024-01-24 13:35:21 +08:00
|
|
|
if raw_response.status_code != 200:
|
2024-02-05 23:29:10 +08:00
|
|
|
print(raw_response.json())
|
2023-11-23 15:06:20 +08:00
|
|
|
time.sleep(1)
|
|
|
|
continue
|
2023-11-21 20:25:47 +08:00
|
|
|
print(response)
|
|
|
|
max_num_retries += 1
|
|
|
|
|
|
|
|
raise RuntimeError(response)
|
2024-04-09 17:50:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class BaiChuan3(BaseAPIModel):
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
path: str,
|
|
|
|
api_key: str,
|
|
|
|
url: str,
|
|
|
|
query_per_second: int = 2,
|
|
|
|
max_seq_len: int = 2048,
|
|
|
|
meta_template: Optional[Dict] = None,
|
|
|
|
retry: int = 2,
|
|
|
|
): # noqa E125
|
|
|
|
super().__init__(path=path,
|
|
|
|
max_seq_len=max_seq_len,
|
|
|
|
query_per_second=query_per_second,
|
|
|
|
meta_template=meta_template,
|
|
|
|
retry=retry)
|
|
|
|
|
|
|
|
self.api_key = api_key
|
|
|
|
self.url = url
|
|
|
|
self.model = path
|
|
|
|
|
|
|
|
def generate(
|
|
|
|
self,
|
|
|
|
inputs: List[PromptType],
|
|
|
|
max_out_len: int = 512,
|
|
|
|
) -> List[str]:
|
|
|
|
"""Generate results given a list of inputs.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
inputs (List[PromptType]): A list of strings or PromptDicts.
|
|
|
|
The PromptDict should be organized in OpenCompass'
|
|
|
|
API format.
|
|
|
|
max_out_len (int): The maximum length of the output.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
List[str]: A list of generated strings.
|
|
|
|
"""
|
|
|
|
with ThreadPoolExecutor() as executor:
|
|
|
|
results = list(
|
|
|
|
executor.map(self._generate, inputs,
|
|
|
|
[max_out_len] * len(inputs)))
|
|
|
|
self.flush()
|
|
|
|
return results
|
|
|
|
|
|
|
|
def _generate(
|
|
|
|
self,
|
|
|
|
input: PromptType,
|
|
|
|
max_out_len: int = 512,
|
|
|
|
) -> str:
|
|
|
|
"""Generate results given an input.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
inputs (PromptType): A string or PromptDict.
|
|
|
|
The PromptDict should be organized in OpenCompass'
|
|
|
|
API format.
|
|
|
|
max_out_len (int): The maximum length of the output.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: The generated string.
|
|
|
|
"""
|
|
|
|
|
|
|
|
assert isinstance(input, (str, PromptList))
|
|
|
|
|
|
|
|
if isinstance(input, str):
|
|
|
|
history = []
|
|
|
|
prompt = input
|
|
|
|
else:
|
|
|
|
messages = []
|
|
|
|
msg_buffer, last_role = [], None
|
|
|
|
for item in input:
|
|
|
|
role = 'BOT' if item['role'] == 'BOT' else 'USER'
|
|
|
|
if role != last_role and last_role is not None:
|
|
|
|
messages.append({
|
|
|
|
'data': '\n'.join(msg_buffer),
|
|
|
|
'from': 0 if last_role == 'USER' else 1
|
|
|
|
})
|
|
|
|
msg_buffer = []
|
|
|
|
msg_buffer.append(item['prompt'])
|
|
|
|
last_role = role
|
|
|
|
messages.append({
|
|
|
|
'data': '\n'.join(msg_buffer),
|
|
|
|
'from': 0 if last_role == 'USER' else 1
|
|
|
|
})
|
|
|
|
history = messages[:-1]
|
|
|
|
prompt = messages[-1]['data']
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'access_token_key': self.api_key,
|
|
|
|
'app_info': {
|
|
|
|
'id': 123
|
|
|
|
},
|
|
|
|
'prompt': {
|
|
|
|
'data': prompt
|
|
|
|
},
|
|
|
|
'history': history,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _ in range(self.retry):
|
|
|
|
try:
|
|
|
|
response = requests.post(self.url, json=data)
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
continue
|
|
|
|
if response is None or response.status_code != 200:
|
|
|
|
code = response.status_code if response else -1
|
|
|
|
print(f'[chat_api]-[failed] request err, status_code: {code}')
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
response = response.json()
|
|
|
|
except Exception as e:
|
|
|
|
print(e)
|
|
|
|
continue
|
|
|
|
print(response)
|
|
|
|
status = response.get('answer', {}).get('status', 0)
|
|
|
|
session_status = response.get('session_info', {}).get('status', 0)
|
|
|
|
if status < 0 or session_status < 0:
|
|
|
|
print('[chat_api]-[warn] prompt or answer is unsafe')
|
|
|
|
return 'Rejection: unsafe prompt or answer'
|
|
|
|
return response.get('answer', {}).get('data', '')
|
|
|
|
|
|
|
|
raise RuntimeError(response['msg'])
|