|
import copy |
|
import time |
|
from collections import deque |
|
|
|
import tiktoken |
|
import torch |
|
import torch.nn.functional as F |
|
from extensions.openai.errors import InvalidRequestError |
|
from extensions.openai.utils import debug_msg |
|
from modules import shared |
|
from modules.chat import ( |
|
generate_chat_prompt, |
|
generate_chat_reply, |
|
load_character_memoized |
|
) |
|
from modules.presets import load_preset_memoized |
|
from modules.text_generation import decode, encode, generate_reply |
|
from transformers import LogitsProcessor, LogitsProcessorList |
|
|
|
|
|
class LogitsBiasProcessor(LogitsProcessor): |
|
def __init__(self, logit_bias={}): |
|
self.logit_bias = logit_bias |
|
if self.logit_bias: |
|
self.keys = list([int(key) for key in self.logit_bias.keys()]) |
|
values = [self.logit_bias[str(key)] for key in self.keys] |
|
self.values = torch.tensor(values, dtype=torch.float, device=shared.model.device) |
|
debug_msg(f"{self})") |
|
|
|
def __call__(self, input_ids: torch.LongTensor, logits: torch.FloatTensor) -> torch.FloatTensor: |
|
if self.logit_bias: |
|
debug_msg(logits[0, self.keys], " + ", self.values) |
|
logits[0, self.keys] += self.values |
|
debug_msg(" --> ", logits[0, self.keys]) |
|
debug_msg(" max/min ", float(torch.max(logits[0])), float(torch.min(logits[0]))) |
|
|
|
return logits |
|
|
|
def __repr__(self): |
|
return f"<{self.__class__.__name__}(logit_bias={self.logit_bias})>" |
|
|
|
|
|
class LogprobProcessor(LogitsProcessor): |
|
def __init__(self, logprobs=None): |
|
self.logprobs = logprobs |
|
self.token_alternatives = {} |
|
|
|
def __call__(self, input_ids: torch.LongTensor, logits: torch.FloatTensor) -> torch.FloatTensor: |
|
if self.logprobs is not None: |
|
log_e_probabilities = F.log_softmax(logits, dim=1) |
|
top_values, top_indices = torch.topk(log_e_probabilities, k=self.logprobs + 1) |
|
top_tokens = [decode(tok) for tok in top_indices[0]] |
|
top_probs = [float(x) for x in top_values[0]] |
|
self.token_alternatives = dict(zip(top_tokens, top_probs)) |
|
debug_msg(repr(self)) |
|
|
|
return logits |
|
|
|
def __repr__(self): |
|
return f"<{self.__class__.__name__}(logprobs={self.logprobs}, token_alternatives={self.token_alternatives})>" |
|
|
|
|
|
def convert_logprobs_to_tiktoken(model, logprobs): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return logprobs |
|
|
|
|
|
def process_parameters(body, is_legacy=False): |
|
generate_params = body |
|
max_tokens_str = 'length' if is_legacy else 'max_tokens' |
|
generate_params['max_new_tokens'] = body.pop(max_tokens_str) |
|
if generate_params['truncation_length'] == 0: |
|
if shared.args.loader and shared.args.loader.lower().startswith('exllama'): |
|
generate_params['truncation_length'] = shared.args.max_seq_len |
|
elif shared.args.loader and shared.args.loader in ['llama.cpp', 'llamacpp_HF', 'ctransformers']: |
|
generate_params['truncation_length'] = shared.args.n_ctx |
|
else: |
|
generate_params['truncation_length'] = shared.settings['truncation_length'] |
|
|
|
if body['preset'] is not None: |
|
preset = load_preset_memoized(body['preset']) |
|
generate_params.update(preset) |
|
|
|
generate_params['custom_stopping_strings'] = [] |
|
if 'stop' in body: |
|
if isinstance(body['stop'], str): |
|
generate_params['custom_stopping_strings'] = [body['stop']] |
|
elif isinstance(body['stop'], list): |
|
generate_params['custom_stopping_strings'] = body['stop'] |
|
|
|
logits_processor = [] |
|
logit_bias = body.get('logit_bias', None) |
|
if logit_bias: |
|
|
|
|
|
try: |
|
encoder = tiktoken.encoding_for_model(generate_params['model']) |
|
new_logit_bias = {} |
|
for logit, bias in logit_bias.items(): |
|
for x in encode(encoder.decode([int(logit)]), add_special_tokens=False)[0]: |
|
if int(x) in [0, 1, 2, 29871]: |
|
continue |
|
|
|
new_logit_bias[str(int(x))] = bias |
|
debug_msg('logit_bias_map', logit_bias, '->', new_logit_bias) |
|
logit_bias = new_logit_bias |
|
except KeyError: |
|
pass |
|
|
|
logits_processor = [LogitsBiasProcessor(logit_bias)] |
|
|
|
logprobs = None |
|
if 'logprobs' in body: |
|
logprobs = body.get('logprobs', 0) |
|
generate_params['logprob_proc'] = LogprobProcessor(logprobs) |
|
logits_processor.extend([generate_params['logprob_proc']]) |
|
else: |
|
logprobs = None |
|
|
|
if logits_processor: |
|
generate_params['logits_processor'] = LogitsProcessorList(logits_processor) |
|
|
|
return generate_params |
|
|
|
|
|
def convert_history(history): |
|
''' |
|
Chat histories in this program are in the format [message, reply]. |
|
This function converts OpenAI histories to that format. |
|
''' |
|
chat_dialogue = [] |
|
current_message = "" |
|
current_reply = "" |
|
user_input = "" |
|
system_message = "" |
|
|
|
for entry in history: |
|
content = entry["content"] |
|
role = entry["role"] |
|
|
|
if role == "user": |
|
user_input = content |
|
if current_message: |
|
chat_dialogue.append([current_message, '']) |
|
current_message = "" |
|
current_message = content |
|
elif role == "assistant": |
|
current_reply = content |
|
if current_message: |
|
chat_dialogue.append([current_message, current_reply]) |
|
current_message = "" |
|
current_reply = "" |
|
else: |
|
chat_dialogue.append(['', current_reply]) |
|
elif role == "system": |
|
system_message = content |
|
|
|
|
|
|
|
|
|
return user_input, system_message, {'internal': chat_dialogue, 'visible': copy.deepcopy(chat_dialogue)} |
|
|
|
|
|
def chat_completions_common(body: dict, is_legacy: bool = False, stream=False) -> dict: |
|
if body.get('functions', []): |
|
raise InvalidRequestError(message="functions is not supported.", param='functions') |
|
|
|
if body.get('function_call', ''): |
|
raise InvalidRequestError(message="function_call is not supported.", param='function_call') |
|
|
|
if 'messages' not in body: |
|
raise InvalidRequestError(message="messages is required", param='messages') |
|
|
|
messages = body['messages'] |
|
for m in messages: |
|
if 'role' not in m: |
|
raise InvalidRequestError(message="messages: missing role", param='messages') |
|
elif m['role'] == 'function': |
|
raise InvalidRequestError(message="role: function is not supported.", param='messages') |
|
if 'content' not in m: |
|
raise InvalidRequestError(message="messages: missing content", param='messages') |
|
|
|
|
|
object_type = 'chat.completions' if not stream else 'chat.completions.chunk' |
|
created_time = int(time.time()) |
|
cmpl_id = "chatcmpl-%d" % (int(time.time() * 1000000000)) |
|
resp_list = 'data' if is_legacy else 'choices' |
|
|
|
|
|
generate_params = process_parameters(body, is_legacy=is_legacy) |
|
continue_ = body['continue_'] |
|
|
|
|
|
instruction_template = body['instruction_template'] or shared.settings['instruction_template'] |
|
instruction_template = "Alpaca" if instruction_template == "None" else instruction_template |
|
name1_instruct, name2_instruct, _, _, context_instruct, turn_template, system_message = load_character_memoized(instruction_template, '', '', instruct=True) |
|
name1_instruct = body['name1_instruct'] or name1_instruct |
|
name2_instruct = body['name2_instruct'] or name2_instruct |
|
context_instruct = body['context_instruct'] or context_instruct |
|
turn_template = body['turn_template'] or turn_template |
|
|
|
|
|
character = body['character'] or shared.settings['character'] |
|
character = "Assistant" if character == "None" else character |
|
name1 = body['name1'] or shared.settings['name1'] |
|
name1, name2, _, greeting, context, _, _ = load_character_memoized(character, name1, '', instruct=False) |
|
name2 = body['name2'] or name2 |
|
context = body['context'] or context |
|
greeting = body['greeting'] or greeting |
|
|
|
|
|
user_input, custom_system_message, history = convert_history(messages) |
|
|
|
generate_params.update({ |
|
'mode': body['mode'], |
|
'name1': name1, |
|
'name2': name2, |
|
'context': context, |
|
'greeting': greeting, |
|
'name1_instruct': name1_instruct, |
|
'name2_instruct': name2_instruct, |
|
'context_instruct': context_instruct, |
|
'system_message': system_message, |
|
'custom_system_message': custom_system_message, |
|
'turn_template': turn_template, |
|
'chat-instruct_command': body['chat_instruct_command'], |
|
'history': history, |
|
'stream': stream |
|
}) |
|
|
|
max_tokens = generate_params['max_new_tokens'] |
|
if max_tokens in [None, 0]: |
|
generate_params['max_new_tokens'] = 200 |
|
generate_params['auto_max_new_tokens'] = True |
|
|
|
requested_model = generate_params.pop('model') |
|
logprob_proc = generate_params.pop('logprob_proc', None) |
|
|
|
def chat_streaming_chunk(content): |
|
|
|
chunk = { |
|
"id": cmpl_id, |
|
"object": object_type, |
|
"created": created_time, |
|
"model": shared.model_name, |
|
resp_list: [{ |
|
"index": 0, |
|
"finish_reason": None, |
|
|
|
"message": {'role': 'assistant', 'content': content}, |
|
"delta": {'role': 'assistant', 'content': content}, |
|
}], |
|
} |
|
|
|
if logprob_proc: |
|
top_logprobs = convert_logprobs_to_tiktoken(model=requested_model, logprobs=logprob_proc.token_alternatives) |
|
chunk[resp_list][0]["logprobs"] = {'top_logprobs': [top_logprobs]} |
|
|
|
|
|
return chunk |
|
|
|
if stream: |
|
yield chat_streaming_chunk('') |
|
|
|
|
|
prompt = generate_chat_prompt(user_input, generate_params) |
|
token_count = len(encode(prompt)[0]) |
|
debug_msg({'prompt': prompt, 'generate_params': generate_params}) |
|
|
|
generator = generate_chat_reply( |
|
user_input, generate_params, regenerate=False, _continue=continue_, loading_message=False) |
|
|
|
answer = '' |
|
seen_content = '' |
|
completion_token_count = 0 |
|
|
|
for a in generator: |
|
answer = a['internal'][-1][1] |
|
if stream: |
|
len_seen = len(seen_content) |
|
new_content = answer[len_seen:] |
|
|
|
if not new_content or chr(0xfffd) in new_content: |
|
continue |
|
|
|
seen_content = answer |
|
chunk = chat_streaming_chunk(new_content) |
|
yield chunk |
|
|
|
completion_token_count = len(encode(answer)[0]) |
|
stop_reason = "stop" |
|
if token_count + completion_token_count >= generate_params['truncation_length'] or completion_token_count >= generate_params['max_new_tokens']: |
|
stop_reason = "length" |
|
|
|
if stream: |
|
chunk = chat_streaming_chunk('') |
|
chunk[resp_list][0]['finish_reason'] = stop_reason |
|
chunk['usage'] = { |
|
"prompt_tokens": token_count, |
|
"completion_tokens": completion_token_count, |
|
"total_tokens": token_count + completion_token_count |
|
} |
|
|
|
yield chunk |
|
else: |
|
resp = { |
|
"id": cmpl_id, |
|
"object": object_type, |
|
"created": created_time, |
|
"model": shared.model_name, |
|
resp_list: [{ |
|
"index": 0, |
|
"finish_reason": stop_reason, |
|
"message": {"role": "assistant", "content": answer} |
|
}], |
|
"usage": { |
|
"prompt_tokens": token_count, |
|
"completion_tokens": completion_token_count, |
|
"total_tokens": token_count + completion_token_count |
|
} |
|
} |
|
if logprob_proc: |
|
top_logprobs = convert_logprobs_to_tiktoken(model=requested_model, logprobs=logprob_proc.token_alternatives) |
|
resp[resp_list][0]["logprobs"] = {'top_logprobs': [top_logprobs]} |
|
|
|
|
|
|
|
yield resp |
|
|
|
|
|
def completions_common(body: dict, is_legacy: bool = False, stream=False): |
|
object_type = 'text_completion.chunk' if stream else 'text_completion' |
|
created_time = int(time.time()) |
|
cmpl_id = "conv-%d" % (int(time.time() * 1000000000)) |
|
resp_list = 'data' if is_legacy else 'choices' |
|
|
|
prompt_str = 'context' if is_legacy else 'prompt' |
|
|
|
|
|
if prompt_str not in body: |
|
raise InvalidRequestError("Missing required input", param=prompt_str) |
|
|
|
|
|
generate_params = process_parameters(body, is_legacy=is_legacy) |
|
max_tokens = generate_params['max_new_tokens'] |
|
generate_params['stream'] = stream |
|
requested_model = generate_params.pop('model') |
|
logprob_proc = generate_params.pop('logprob_proc', None) |
|
suffix = body['suffix'] if body['suffix'] else '' |
|
echo = body['echo'] |
|
|
|
if not stream: |
|
prompt_arg = body[prompt_str] |
|
if isinstance(prompt_arg, str) or (isinstance(prompt_arg, list) and isinstance(prompt_arg[0], int)): |
|
prompt_arg = [prompt_arg] |
|
|
|
resp_list_data = [] |
|
total_completion_token_count = 0 |
|
total_prompt_token_count = 0 |
|
|
|
for idx, prompt in enumerate(prompt_arg, start=0): |
|
if isinstance(prompt[0], int): |
|
|
|
if requested_model == shared.model_name: |
|
prompt = decode(prompt)[0] |
|
else: |
|
try: |
|
encoder = tiktoken.encoding_for_model(requested_model) |
|
prompt = encoder.decode(prompt) |
|
except KeyError: |
|
prompt = decode(prompt)[0] |
|
|
|
prefix = prompt if echo else '' |
|
token_count = len(encode(prompt)[0]) |
|
total_prompt_token_count += token_count |
|
|
|
|
|
debug_msg({'prompt': prompt, 'generate_params': generate_params}) |
|
generator = generate_reply(prompt, generate_params, is_chat=False) |
|
answer = '' |
|
|
|
for a in generator: |
|
answer = a |
|
|
|
completion_token_count = len(encode(answer)[0]) |
|
total_completion_token_count += completion_token_count |
|
stop_reason = "stop" |
|
if token_count + completion_token_count >= generate_params['truncation_length'] or completion_token_count >= max_tokens: |
|
stop_reason = "length" |
|
|
|
respi = { |
|
"index": idx, |
|
"finish_reason": stop_reason, |
|
"text": prefix + answer + suffix, |
|
"logprobs": {'top_logprobs': [logprob_proc.token_alternatives]} if logprob_proc else None, |
|
} |
|
|
|
resp_list_data.extend([respi]) |
|
|
|
resp = { |
|
"id": cmpl_id, |
|
"object": object_type, |
|
"created": created_time, |
|
"model": shared.model_name, |
|
resp_list: resp_list_data, |
|
"usage": { |
|
"prompt_tokens": total_prompt_token_count, |
|
"completion_tokens": total_completion_token_count, |
|
"total_tokens": total_prompt_token_count + total_completion_token_count |
|
} |
|
} |
|
|
|
yield resp |
|
else: |
|
prompt = body[prompt_str] |
|
if isinstance(prompt, list): |
|
if prompt and isinstance(prompt[0], int): |
|
try: |
|
encoder = tiktoken.encoding_for_model(requested_model) |
|
prompt = encoder.decode(prompt) |
|
except KeyError: |
|
prompt = decode(prompt)[0] |
|
else: |
|
raise InvalidRequestError(message="API Batched generation not yet supported.", param=prompt_str) |
|
|
|
prefix = prompt if echo else '' |
|
token_count = len(encode(prompt)[0]) |
|
|
|
def text_streaming_chunk(content): |
|
|
|
chunk = { |
|
"id": cmpl_id, |
|
"object": object_type, |
|
"created": created_time, |
|
"model": shared.model_name, |
|
resp_list: [{ |
|
"index": 0, |
|
"finish_reason": None, |
|
"text": content, |
|
"logprobs": {'top_logprobs': [logprob_proc.token_alternatives]} if logprob_proc else None, |
|
}], |
|
} |
|
|
|
return chunk |
|
|
|
yield text_streaming_chunk(prefix) |
|
|
|
|
|
debug_msg({'prompt': prompt, 'generate_params': generate_params}) |
|
generator = generate_reply(prompt, generate_params, is_chat=False) |
|
|
|
answer = '' |
|
seen_content = '' |
|
completion_token_count = 0 |
|
|
|
for a in generator: |
|
answer = a |
|
|
|
len_seen = len(seen_content) |
|
new_content = answer[len_seen:] |
|
|
|
if not new_content or chr(0xfffd) in new_content: |
|
continue |
|
|
|
seen_content = answer |
|
chunk = text_streaming_chunk(new_content) |
|
yield chunk |
|
|
|
completion_token_count = len(encode(answer)[0]) |
|
stop_reason = "stop" |
|
if token_count + completion_token_count >= generate_params['truncation_length'] or completion_token_count >= max_tokens: |
|
stop_reason = "length" |
|
|
|
chunk = text_streaming_chunk(suffix) |
|
chunk[resp_list][0]["finish_reason"] = stop_reason |
|
chunk["usage"] = { |
|
"prompt_tokens": token_count, |
|
"completion_tokens": completion_token_count, |
|
"total_tokens": token_count + completion_token_count |
|
} |
|
|
|
yield chunk |
|
|
|
|
|
def chat_completions(body: dict, is_legacy: bool = False) -> dict: |
|
generator = chat_completions_common(body, is_legacy, stream=False) |
|
return deque(generator, maxlen=1).pop() |
|
|
|
|
|
def stream_chat_completions(body: dict, is_legacy: bool = False): |
|
for resp in chat_completions_common(body, is_legacy, stream=True): |
|
yield resp |
|
|
|
|
|
def completions(body: dict, is_legacy: bool = False) -> dict: |
|
generator = completions_common(body, is_legacy, stream=False) |
|
return deque(generator, maxlen=1).pop() |
|
|
|
|
|
def stream_completions(body: dict, is_legacy: bool = False): |
|
for resp in completions_common(body, is_legacy, stream=True): |
|
yield resp |
|
|