zai-org--chatglm3
243 行
7.6 KiB
Python
243 行
7.6 KiB
Python
# coding=utf-8
|
|
# Implements API for ChatGLM3-6B in OpenAI's format. (https://platform.openai.com/docs/api-reference/chat)
|
|
# Usage: python openai_api.py
|
|
# Visit http://localhost:8000/docs for documents.
|
|
|
|
|
|
import time
|
|
from contextlib import asynccontextmanager
|
|
from typing import List, Literal, Optional, Union
|
|
|
|
import torch
|
|
import uvicorn
|
|
from fastapi import FastAPI, HTTPException
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from loguru import logger
|
|
from pydantic import BaseModel, Field
|
|
from sse_starlette.sse import EventSourceResponse
|
|
from transformers import AutoTokenizer, AutoModel
|
|
|
|
from utils import process_response, generate_chatglm3, generate_stream_chatglm3
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(app: FastAPI): # collects GPU memory
|
|
yield
|
|
if torch.cuda.is_available():
|
|
torch.cuda.empty_cache()
|
|
torch.cuda.ipc_collect()
|
|
|
|
|
|
app = FastAPI(lifespan=lifespan)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=["*"],
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
|
|
class ModelCard(BaseModel):
|
|
id: str
|
|
object: str = "model"
|
|
created: int = Field(default_factory=lambda: int(time.time()))
|
|
owned_by: str = "owner"
|
|
root: Optional[str] = None
|
|
parent: Optional[str] = None
|
|
permission: Optional[list] = None
|
|
|
|
|
|
class ModelList(BaseModel):
|
|
object: str = "list"
|
|
data: List[ModelCard] = []
|
|
|
|
|
|
class FunctionCallResponse(BaseModel):
|
|
name: Optional[str] = None
|
|
arguments: Optional[str] = None
|
|
|
|
|
|
class ChatMessage(BaseModel):
|
|
role: Literal["user", "assistant", "system", "function"]
|
|
content: str = None
|
|
name: Optional[str] = None
|
|
function_call: Optional[FunctionCallResponse] = None
|
|
|
|
|
|
class DeltaMessage(BaseModel):
|
|
role: Optional[Literal["user", "assistant", "system"]] = None
|
|
content: Optional[str] = None
|
|
function_call: Optional[FunctionCallResponse] = None
|
|
|
|
|
|
class ChatCompletionRequest(BaseModel):
|
|
model: str
|
|
messages: List[ChatMessage]
|
|
temperature: Optional[float] = 0.8
|
|
top_p: Optional[float] = 0.8
|
|
max_tokens: Optional[int] = None
|
|
stream: Optional[bool] = False
|
|
functions: Optional[Union[dict, List[dict]]] = None
|
|
|
|
# Additional parameters
|
|
max_length: Optional[int] = None
|
|
repetition_penalty: Optional[float] = 1.1
|
|
|
|
|
|
class ChatCompletionResponseChoice(BaseModel):
|
|
index: int
|
|
message: ChatMessage
|
|
finish_reason: Literal["stop", "length", "function_call"]
|
|
|
|
|
|
class ChatCompletionResponseStreamChoice(BaseModel):
|
|
index: int
|
|
delta: DeltaMessage
|
|
finish_reason: Optional[Literal["stop", "length", "function_call"]]
|
|
|
|
|
|
class UsageInfo(BaseModel):
|
|
prompt_tokens: int = 0
|
|
total_tokens: int = 0
|
|
completion_tokens: Optional[int] = 0
|
|
|
|
|
|
class ChatCompletionResponse(BaseModel):
|
|
model: str
|
|
object: Literal["chat.completion", "chat.completion.chunk"]
|
|
choices: List[Union[ChatCompletionResponseChoice, ChatCompletionResponseStreamChoice]]
|
|
created: Optional[int] = Field(default_factory=lambda: int(time.time()))
|
|
usage: Optional[UsageInfo] = None
|
|
|
|
|
|
@app.get("/v1/models", response_model=ModelList)
|
|
async def list_models():
|
|
model_card = ModelCard(id="gpt-3.5-turbo")
|
|
return ModelList(data=[model_card])
|
|
|
|
|
|
@app.post("/v1/chat/completions", response_model=ChatCompletionResponse)
|
|
async def create_chat_completion(request: ChatCompletionRequest):
|
|
global model, tokenizer
|
|
|
|
if len(request.messages) < 1 or request.messages[-1].role == "assistant":
|
|
raise HTTPException(status_code=400, detail="Invalid request")
|
|
|
|
gen_params = dict(
|
|
messages=request.messages,
|
|
temperature=request.temperature,
|
|
top_p=request.top_p,
|
|
max_tokens=request.max_tokens or 1024,
|
|
max_length=request.max_length,
|
|
echo=False,
|
|
stream=request.stream,
|
|
repetition_penalty=request.repetition_penalty,
|
|
functions=request.functions,
|
|
)
|
|
|
|
logger.debug(f"==== request ====\n{gen_params}")
|
|
|
|
if request.stream:
|
|
generate = predict(request.model, gen_params)
|
|
return EventSourceResponse(generate, media_type="text/event-stream")
|
|
|
|
response = generate_chatglm3(model, tokenizer, gen_params)
|
|
usage = UsageInfo()
|
|
|
|
function_call, finish_reason = None, "stop"
|
|
if request.functions:
|
|
try:
|
|
function_call = process_response(response["text"], use_tool=True)
|
|
except:
|
|
logger.warning("Failed to parse tool call")
|
|
|
|
if isinstance(function_call, dict):
|
|
finish_reason = "function_call"
|
|
function_call = FunctionCallResponse(**function_call)
|
|
|
|
message = ChatMessage(
|
|
role="assistant",
|
|
content=response["text"],
|
|
function_call=function_call if isinstance(function_call, FunctionCallResponse) else None,
|
|
)
|
|
|
|
choice_data = ChatCompletionResponseChoice(
|
|
index=0,
|
|
message=message,
|
|
finish_reason=finish_reason,
|
|
)
|
|
|
|
task_usage = UsageInfo.parse_obj(response["usage"])
|
|
for usage_key, usage_value in task_usage.dict().items():
|
|
setattr(usage, usage_key, getattr(usage, usage_key) + usage_value)
|
|
|
|
return ChatCompletionResponse(model=request.model, choices=[choice_data], object="chat.completion", usage=usage)
|
|
|
|
|
|
async def predict(model_id: str, params: dict):
|
|
global model, tokenizer
|
|
|
|
choice_data = ChatCompletionResponseStreamChoice(
|
|
index=0,
|
|
delta=DeltaMessage(role="assistant"),
|
|
finish_reason=None
|
|
)
|
|
chunk = ChatCompletionResponse(model=model_id, choices=[choice_data], object="chat.completion.chunk")
|
|
yield "{}".format(chunk.json(exclude_unset=True, ensure_ascii=False))
|
|
|
|
previous_text = ""
|
|
for new_response in generate_stream_chatglm3(model, tokenizer, params):
|
|
decoded_unicode = new_response["text"]
|
|
delta_text = decoded_unicode[len(previous_text):]
|
|
previous_text = decoded_unicode
|
|
|
|
finish_reason = new_response["finish_reason"]
|
|
if len(delta_text) == 0 and finish_reason != "function_call":
|
|
continue
|
|
|
|
function_call = None
|
|
if finish_reason == "function_call":
|
|
try:
|
|
function_call = process_response(decoded_unicode, use_tool=True)
|
|
except:
|
|
print("Failed to parse tool call")
|
|
|
|
if isinstance(function_call, dict):
|
|
function_call = FunctionCallResponse(**function_call)
|
|
|
|
delta = DeltaMessage(
|
|
content=delta_text,
|
|
role="assistant",
|
|
function_call=function_call if isinstance(function_call, FunctionCallResponse) else None,
|
|
)
|
|
|
|
choice_data = ChatCompletionResponseStreamChoice(
|
|
index=0,
|
|
delta=delta,
|
|
finish_reason=finish_reason
|
|
)
|
|
chunk = ChatCompletionResponse(model=model_id, choices=[choice_data], object="chat.completion.chunk")
|
|
yield "{}".format(chunk.json(exclude_unset=True, ensure_ascii=False))
|
|
|
|
choice_data = ChatCompletionResponseStreamChoice(
|
|
index=0,
|
|
delta=DeltaMessage(),
|
|
finish_reason="stop"
|
|
)
|
|
chunk = ChatCompletionResponse(model=model_id, choices=[choice_data], object="chat.completion.chunk")
|
|
yield "{}".format(chunk.json(exclude_unset=True, ensure_ascii=False))
|
|
yield '[DONE]'
|
|
|
|
|
|
if __name__ == "__main__":
|
|
tokenizer = AutoTokenizer.from_pretrained("THUDM/chatglm3-6b", trust_remote_code=True)
|
|
model = AutoModel.from_pretrained("THUDM/chatglm3-6b", trust_remote_code=True).cuda()
|
|
# 多显卡支持,使用下面两行代替上面一行,将num_gpus改为你实际的显卡数量
|
|
# from utils import load_model_on_gpus
|
|
# model = load_model_on_gpus("THUDM/chatglm3-6b", num_gpus=2)
|
|
model = model.eval()
|
|
|
|
uvicorn.run(app, host='0.0.0.0', port=8000, workers=1)
|