python-backend: extra ChatCompletionBody params (raw
, presystem
);
add default_stop when stop is null
This commit is contained in:
parent
c8025f1cff
commit
a24b78e8c3
@ -26,31 +26,43 @@ class Role(Enum):
|
|||||||
class Message(BaseModel):
|
class Message(BaseModel):
|
||||||
role: Role
|
role: Role
|
||||||
content: str = Field(min_length=0)
|
content: str = Field(min_length=0)
|
||||||
|
raw: bool = Field(False, description="Whether to treat content as raw text")
|
||||||
|
|
||||||
|
|
||||||
class ChatCompletionBody(ModelConfigBody):
|
default_stop = [
|
||||||
messages: Union[List[Message], None]
|
|
||||||
model: str = "rwkv"
|
|
||||||
stream: bool = False
|
|
||||||
stop: Union[str, List[str], None] = [
|
|
||||||
"\n\nUser",
|
"\n\nUser",
|
||||||
"\n\nQuestion",
|
"\n\nQuestion",
|
||||||
"\n\nQ",
|
"\n\nQ",
|
||||||
"\n\nHuman",
|
"\n\nHuman",
|
||||||
"\n\nBob",
|
"\n\nBob",
|
||||||
]
|
]
|
||||||
user_name: Union[str, None] = None
|
|
||||||
assistant_name: Union[str, None] = None
|
|
||||||
|
class ChatCompletionBody(ModelConfigBody):
|
||||||
|
messages: Union[List[Message], None]
|
||||||
|
model: str = "rwkv"
|
||||||
|
stream: bool = False
|
||||||
|
stop: Union[str, List[str], None] = default_stop
|
||||||
|
user_name: Union[str, None] = Field(None, description="Internal user name")
|
||||||
|
assistant_name: Union[str, None] = Field(
|
||||||
|
None, description="Internal assistant name"
|
||||||
|
)
|
||||||
|
presystem: bool = Field(
|
||||||
|
True, description="Whether to insert default system prompt at the beginning"
|
||||||
|
)
|
||||||
|
|
||||||
class Config:
|
class Config:
|
||||||
schema_extra = {
|
schema_extra = {
|
||||||
"example": {
|
"example": {
|
||||||
"messages": [{"role": Role.User.value, "content": "hello"}],
|
"messages": [
|
||||||
|
{"role": Role.User.value, "content": "hello", "raw": False}
|
||||||
|
],
|
||||||
"model": "rwkv",
|
"model": "rwkv",
|
||||||
"stream": False,
|
"stream": False,
|
||||||
"stop": None,
|
"stop": None,
|
||||||
"user_name": None,
|
"user_name": None,
|
||||||
"assistant_name": None,
|
"assistant_name": None,
|
||||||
|
"presystem": True,
|
||||||
"max_tokens": 1000,
|
"max_tokens": 1000,
|
||||||
"temperature": 1.2,
|
"temperature": 1.2,
|
||||||
"top_p": 0.5,
|
"top_p": 0.5,
|
||||||
@ -233,10 +245,6 @@ async def chat_completions(body: ChatCompletionBody, request: Request):
|
|||||||
if body.messages is None or body.messages == []:
|
if body.messages is None or body.messages == []:
|
||||||
raise HTTPException(status.HTTP_400_BAD_REQUEST, "messages not found")
|
raise HTTPException(status.HTTP_400_BAD_REQUEST, "messages not found")
|
||||||
|
|
||||||
basic_system: str = ""
|
|
||||||
if body.messages[0].role == Role.System:
|
|
||||||
basic_system = body.messages[0].content
|
|
||||||
|
|
||||||
interface = model.interface
|
interface = model.interface
|
||||||
user = model.user if body.user_name is None else body.user_name
|
user = model.user if body.user_name is None else body.user_name
|
||||||
bot = model.bot if body.assistant_name is None else body.assistant_name
|
bot = model.bot if body.assistant_name is None else body.assistant_name
|
||||||
@ -244,7 +252,12 @@ async def chat_completions(body: ChatCompletionBody, request: Request):
|
|||||||
is_raven = model.rwkv_type == RWKVType.Raven
|
is_raven = model.rwkv_type == RWKVType.Raven
|
||||||
|
|
||||||
completion_text: str = ""
|
completion_text: str = ""
|
||||||
if basic_system == "":
|
basic_system: Union[str, None] = None
|
||||||
|
if body.presystem:
|
||||||
|
if body.messages[0].role == Role.System:
|
||||||
|
basic_system = body.messages[0].content
|
||||||
|
|
||||||
|
if basic_system is None:
|
||||||
completion_text = (
|
completion_text = (
|
||||||
f"""
|
f"""
|
||||||
The following is a coherent verbose detailed conversation between a girl named {bot} and her friend {user}. \
|
The following is a coherent verbose detailed conversation between a girl named {bot} and her friend {user}. \
|
||||||
@ -259,19 +272,22 @@ The following is a coherent verbose detailed conversation between a girl named {
|
|||||||
+ "I am your assistant and I will provide expert full response in full details. Please feel free to ask any question and I will always answer it.\n\n"
|
+ "I am your assistant and I will provide expert full response in full details. Please feel free to ask any question and I will always answer it.\n\n"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
elif basic_system != "":
|
else:
|
||||||
|
if not body.messages[0].raw:
|
||||||
|
basic_system = (
|
||||||
|
basic_system.replace("\r\n", "\n")
|
||||||
|
.replace("\r", "\n")
|
||||||
|
.replace("\n\n", "\n")
|
||||||
|
.replace("\n", " ")
|
||||||
|
.strip()
|
||||||
|
)
|
||||||
completion_text = (
|
completion_text = (
|
||||||
(
|
(
|
||||||
f"The following is a coherent verbose detailed conversation between a girl named {bot} and her friend {user}. "
|
f"The following is a coherent verbose detailed conversation between a girl named {bot} and her friend {user}. "
|
||||||
if is_raven
|
if is_raven
|
||||||
else f"{user}{interface} hi\n\n{bot}{interface} Hi. "
|
else f"{user}{interface} hi\n\n{bot}{interface} Hi. "
|
||||||
)
|
)
|
||||||
+ basic_system.replace("\r\n", "\n")
|
+ basic_system.replace("You are", f"{bot} is" if is_raven else "I am")
|
||||||
.replace("\r", "\n")
|
|
||||||
.replace("\n\n", "\n")
|
|
||||||
.replace("\n", " ")
|
|
||||||
.strip()
|
|
||||||
.replace("You are", f"{bot} is" if is_raven else "I am")
|
|
||||||
.replace("you are", f"{bot} is" if is_raven else "I am")
|
.replace("you are", f"{bot} is" if is_raven else "I am")
|
||||||
.replace("You're", f"{bot} is" if is_raven else "I'm")
|
.replace("You're", f"{bot} is" if is_raven else "I'm")
|
||||||
.replace("you're", f"{bot} is" if is_raven else "I'm")
|
.replace("you're", f"{bot} is" if is_raven else "I'm")
|
||||||
@ -283,7 +299,7 @@ The following is a coherent verbose detailed conversation between a girl named {
|
|||||||
+ "\n\n"
|
+ "\n\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
for message in body.messages[(0 if basic_system == "" else 1) :]:
|
for message in body.messages[(0 if basic_system is None else 1) :]:
|
||||||
append_message: str = ""
|
append_message: str = ""
|
||||||
if message.role == Role.User:
|
if message.role == Role.User:
|
||||||
append_message = f"{user}{interface} " + message.content
|
append_message = f"{user}{interface} " + message.content
|
||||||
@ -291,20 +307,23 @@ The following is a coherent verbose detailed conversation between a girl named {
|
|||||||
append_message = f"{bot}{interface} " + message.content
|
append_message = f"{bot}{interface} " + message.content
|
||||||
elif message.role == Role.System:
|
elif message.role == Role.System:
|
||||||
append_message = message.content
|
append_message = message.content
|
||||||
completion_text += (
|
if not message.raw:
|
||||||
|
append_message = (
|
||||||
append_message.replace("\r\n", "\n")
|
append_message.replace("\r\n", "\n")
|
||||||
.replace("\r", "\n")
|
.replace("\r", "\n")
|
||||||
.replace("\n\n", "\n")
|
.replace("\n\n", "\n")
|
||||||
.strip()
|
.strip()
|
||||||
+ "\n\n"
|
|
||||||
)
|
)
|
||||||
|
completion_text += append_message + "\n\n"
|
||||||
completion_text += f"{bot}{interface}"
|
completion_text += f"{bot}{interface}"
|
||||||
|
|
||||||
if type(body.stop) == str:
|
if type(body.stop) == str:
|
||||||
body.stop = [body.stop, f"\n\n{user}", f"\n\n{bot}"]
|
body.stop = [body.stop, f"\n\n{user}", f"\n\n{bot}"]
|
||||||
else:
|
elif type(body.stop) == list:
|
||||||
body.stop.append(f"\n\n{user}")
|
body.stop.append(f"\n\n{user}")
|
||||||
body.stop.append(f"\n\n{bot}")
|
body.stop.append(f"\n\n{bot}")
|
||||||
|
elif body.stop is None:
|
||||||
|
body.stop = default_stop
|
||||||
|
|
||||||
if body.stream:
|
if body.stream:
|
||||||
return EventSourceResponse(
|
return EventSourceResponse(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user