api_server.py 12.8 KB
Newer Older
AllentDan's avatar
AllentDan committed
1
2
3
4
# Copyright (c) OpenMMLab. All rights reserved.
import os
import time
from http import HTTPStatus
5
from typing import AsyncGenerator, List, Optional
AllentDan's avatar
AllentDan committed
6
7
8

import fire
import uvicorn
9
from fastapi import FastAPI, Request
10
from fastapi.middleware.cors import CORSMiddleware
AllentDan's avatar
AllentDan committed
11
12
from fastapi.responses import JSONResponse, StreamingResponse

13
from lmdeploy.serve.async_engine import AsyncEngine
AllentDan's avatar
AllentDan committed
14
15
16
17
from lmdeploy.serve.openai.protocol import (  # noqa: E501
    ChatCompletionRequest, ChatCompletionResponse,
    ChatCompletionResponseChoice, ChatCompletionResponseStreamChoice,
    ChatCompletionStreamResponse, ChatMessage, DeltaMessage, EmbeddingsRequest,
18
19
    EmbeddingsResponse, ErrorResponse, GenerateRequest, GenerateResponse,
    ModelCard, ModelList, ModelPermission, UsageInfo)
AllentDan's avatar
AllentDan committed
20
21
22
23
24
25
26
27
28
29

os.environ['TM_LOG_LEVEL'] = 'ERROR'


class VariableInterface:
    """A IO interface maintaining variables."""
    async_engine: AsyncEngine = None
    request_hosts = []


30
app = FastAPI(docs_url='/')
AllentDan's avatar
AllentDan committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59


def get_model_list():
    """Available models.

    Only provided one now.
    """
    return [VariableInterface.async_engine.tm_model.model_name]


@app.get('/v1/models')
def available_models():
    """Show available models."""
    model_cards = []
    for model_name in get_model_list():
        model_cards.append(
            ModelCard(id=model_name,
                      root=model_name,
                      permission=[ModelPermission()]))
    return ModelList(data=model_cards)


def create_error_response(status: HTTPStatus, message: str):
    """Create error response according to http status and message.

    Args:
        status (HTTPStatus): HTTP status codes and reason phrases
        message (str): error message
    """
AllentDan's avatar
AllentDan committed
60
61
62
    return JSONResponse(
        ErrorResponse(message=message,
                      type='invalid_request_error',
63
                      code=status.value).model_dump())
AllentDan's avatar
AllentDan committed
64
65
66
67
68
69
70
71
72
73
74


async def check_request(request) -> Optional[JSONResponse]:
    """Check if a request is valid."""
    if request.model in get_model_list():
        return
    ret = create_error_response(
        HTTPStatus.NOT_FOUND, f'The model `{request.model}` does not exist.')
    return ret


75
76
77
78
79
80
81
82
83
84
def ip2id(host_ip: str):
    """Convert host ip address to session id."""
    if '.' in host_ip:  # IPv4
        return int(host_ip.replace('.', '')[-8:])
    if ':' in host_ip:  # IPv6
        return int(host_ip.replace(':', '')[-8:], 16)
    print('Warning, could not get session id from ip, set it 0')
    return 0


AllentDan's avatar
AllentDan committed
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@app.post('/v1/chat/completions')
async def chat_completions_v1(request: ChatCompletionRequest,
                              raw_request: Request = None):
    """Completion API similar to OpenAI's API.

    Refer to  `https://platform.openai.com/docs/api-reference/chat/create`
    for the API specification.

    The request should be a JSON object with the following fields:
    - model: model name. Available from /v1/models.
    - messages: string prompt or chat history in OpenAI format.
    - temperature (float): to modulate the next token probability
    - top_p (float): If set to float < 1, only the smallest set of most
        probable tokens with probabilities that add up to top_p or higher
        are kept for generation.
    - n (int): How many chat completion choices to generate for each input
        message. Only support one here.
    - stream: whether to stream the results or not. Default to false.
    - max_tokens (int): output token nums
    - repetition_penalty (float): The parameter for repetition penalty.
        1.0 means no penalty

    Additional arguments supported by LMDeploy:
    - renew_session (bool): Whether renew the session. Can be used when the
        session length is exceeded.
    - ignore_eos (bool): indicator for ignoring eos

    Currently we do not support the following features:
    - function_call (Users should implement this by themselves)
    - logit_bias (not supported yet)
    - presence_penalty (replaced with repetition_penalty)
    - frequency_penalty (replaced with repetition_penalty)
    """
118
    session_id = ip2id(raw_request.client.host)
AllentDan's avatar
AllentDan committed
119
120
121
122
123
    error_check_ret = await check_request(request)
    if error_check_ret is not None:
        return error_check_ret

    model_name = request.model
124
    request_id = str(session_id)
AllentDan's avatar
AllentDan committed
125
126
127
128
    created_time = int(time.time())

    result_generator = VariableInterface.async_engine.generate_openai(
        request.messages,
129
        session_id,
AllentDan's avatar
AllentDan committed
130
        True,  # always use stream to enable batching
AllentDan's avatar
AllentDan committed
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
        request.renew_session,
        request_output_len=request.max_tokens if request.max_tokens else 512,
        stop=request.stop,
        top_p=request.top_p,
        temperature=request.temperature,
        repetition_penalty=request.repetition_penalty,
        ignore_eos=request.ignore_eos)

    def create_stream_response_json(
        index: int,
        text: str,
        finish_reason: Optional[str] = None,
    ) -> str:
        choice_data = ChatCompletionResponseStreamChoice(
            index=index,
            delta=DeltaMessage(role='assistant', content=text),
            finish_reason=finish_reason,
        )
        response = ChatCompletionStreamResponse(
            id=request_id,
            created=created_time,
            model=model_name,
            choices=[choice_data],
        )
155
        response_json = response.model_dump_json()
AllentDan's avatar
AllentDan committed
156
157
158
159
160
161
162
163
164
165
166
167
168
169

        return response_json

    async def completion_stream_generator() -> AsyncGenerator[str, None]:
        # First chunk with role
        for i in range(request.n):
            choice_data = ChatCompletionResponseStreamChoice(
                index=i,
                delta=DeltaMessage(role='assistant'),
                finish_reason=None,
            )
            chunk = ChatCompletionStreamResponse(id=request_id,
                                                 choices=[choice_data],
                                                 model=model_name)
170
            data = chunk.model_dump_json(exclude_unset=True)
AllentDan's avatar
AllentDan committed
171
172
173
174
175
176
177
178
179
180
181
182
183
            yield f'data: {data}\n\n'

        async for res in result_generator:
            response_json = create_stream_response_json(
                index=0,
                text=res.response,
            )
            yield f'data: {response_json}\n\n'
        yield 'data: [DONE]\n\n'

    # Streaming response
    if request.stream:
        return StreamingResponse(completion_stream_generator(),
184
                                 media_type='text/event-stream')
AllentDan's avatar
AllentDan committed
185
186
187

    # Non-streaming response
    final_res = None
AllentDan's avatar
AllentDan committed
188
    text = ''
AllentDan's avatar
AllentDan committed
189
190
191
    async for res in result_generator:
        if await raw_request.is_disconnected():
            # Abort the request if the client disconnects.
192
            VariableInterface.async_engine.stop_session(session_id)
AllentDan's avatar
AllentDan committed
193
194
195
            return create_error_response(HTTPStatus.BAD_REQUEST,
                                         'Client disconnected')
        final_res = res
AllentDan's avatar
AllentDan committed
196
        text += res.response
AllentDan's avatar
AllentDan committed
197
198
199
200
    assert final_res is not None
    choices = []
    choice_data = ChatCompletionResponseChoice(
        index=0,
AllentDan's avatar
AllentDan committed
201
        message=ChatMessage(role='assistant', content=text),
AllentDan's avatar
AllentDan committed
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
        finish_reason=final_res.finish_reason,
    )
    choices.append(choice_data)

    total_tokens = sum([
        final_res.history_token_len, final_res.input_token_len,
        final_res.generate_token_len
    ])
    usage = UsageInfo(
        prompt_tokens=final_res.input_token_len,
        completion_tokens=final_res.generate_token_len,
        total_tokens=total_tokens,
    )
    response = ChatCompletionResponse(
        id=request_id,
        created=created_time,
        model=model_name,
        choices=choices,
        usage=usage,
    )

    return response


@app.post('/v1/embeddings')
async def create_embeddings(request: EmbeddingsRequest,
                            raw_request: Request = None):
    """Creates embeddings for the text."""
    error_check_ret = await check_request(request)
    if error_check_ret is not None:
        return error_check_ret

    embedding = await VariableInterface.async_engine.get_embeddings(
        request.input)
    data = [{'object': 'embedding', 'embedding': embedding, 'index': 0}]
    token_num = len(embedding)
    return EmbeddingsResponse(
        data=data,
        model=request.model,
        usage=UsageInfo(
            prompt_tokens=token_num,
            total_tokens=token_num,
            completion_tokens=None,
        ),
    ).dict(exclude_none=True)


@app.post('/generate')
async def generate(request: GenerateRequest, raw_request: Request = None):
    """Generate completion for the request.

    The request should be a JSON object with the following fields:
    - prompt: the prompt to use for the generation.
255
    - session_id: determine which instance will be called. If not specified
AllentDan's avatar
AllentDan committed
256
        with a value other than -1, using host ip directly.
257
258
259
260
    - sequence_start (bool): indicator for starting a sequence.
    - sequence_end (bool): indicator for ending a sequence
    - stream: whether to stream the results or not.
    - stop: whether to stop the session response or not.
AllentDan's avatar
AllentDan committed
261
262
263
264
265
266
267
268
269
270
271
272
    - request_output_len (int): output token nums
    - step (int): the offset of the k/v cache
    - top_p (float): If set to float < 1, only the smallest set of most
        probable tokens with probabilities that add up to top_p or higher
        are kept for generation.
    - top_k (int): The number of the highest probability vocabulary
        tokens to keep for top-k-filtering
    - temperature (float): to modulate the next token probability
    - repetition_penalty (float): The parameter for repetition penalty.
        1.0 means no penalty
    - ignore_eos (bool): indicator for ignoring eos
    """
273
274
275
    if request.session_id == -1:
        session_id = ip2id(raw_request.client.host)
        request.session_id = session_id
AllentDan's avatar
AllentDan committed
276
277
278

    generation = VariableInterface.async_engine.generate(
        request.prompt,
279
        request.session_id,
280
        stream_response=True,  # always use stream to enable batching
AllentDan's avatar
AllentDan committed
281
282
283
284
285
        sequence_start=request.sequence_start,
        sequence_end=request.sequence_end,
        request_output_len=request.request_output_len,
        top_p=request.top_p,
        top_k=request.top_k,
286
        stop=request.stop,
AllentDan's avatar
AllentDan committed
287
288
289
290
291
292
293
        temperature=request.temperature,
        repetition_penalty=request.repetition_penalty,
        ignore_eos=request.ignore_eos)

    # Streaming case
    async def stream_results() -> AsyncGenerator[bytes, None]:
        async for out in generation:
294
295
296
297
298
            chunk = GenerateResponse(text=out.response,
                                     tokens=out.generate_token_len,
                                     finish_reason=out.finish_reason)
            data = chunk.model_dump_json()
            yield f'{data}\n'
AllentDan's avatar
AllentDan committed
299
300

    if request.stream:
301
302
        return StreamingResponse(stream_results(),
                                 media_type='text/event-stream')
AllentDan's avatar
AllentDan committed
303
304
    else:
        ret = {}
305
306
307
        text = ''
        tokens = 0
        finish_reason = None
AllentDan's avatar
AllentDan committed
308
        async for out in generation:
309
310
311
312
313
            if await raw_request.is_disconnected():
                # Abort the request if the client disconnects.
                VariableInterface.async_engine.stop_session(session_id)
                return create_error_response(HTTPStatus.BAD_REQUEST,
                                             'Client disconnected')
314
            text += out.response
AllentDan's avatar
AllentDan committed
315
            tokens = out.generate_token_len
316
317
            finish_reason = out.finish_reason
        ret = {'text': text, 'tokens': tokens, 'finish_reason': finish_reason}
AllentDan's avatar
AllentDan committed
318
319
320
321
322
323
324
        return JSONResponse(ret)


def main(model_path: str,
         server_name: str = 'localhost',
         server_port: int = 23333,
         instance_num: int = 32,
325
326
327
328
329
         tp: int = 1,
         allow_origins: List[str] = ['*'],
         allow_credentials: bool = True,
         allow_methods: List[str] = ['*'],
         allow_headers: List[str] = ['*']):
AllentDan's avatar
AllentDan committed
330
331
332
333
334
335
336
337
338
    """An example to perform model inference through the command line
    interface.

    Args:
        model_path (str): the path of the deployed model
        server_name (str): host ip for serving
        server_port (int): server port
        instance_num (int): number of instances of turbomind model
        tp (int): tensor parallel
339
340
341
342
        allow_origins (List[str]): a list of allowed origins for CORS
        allow_credentials (bool): whether to allow credentials for CORS
        allow_methods (List[str]): a list of allowed HTTP methods for CORS
        allow_headers (List[str]): a list of allowed HTTP headers for CORS
AllentDan's avatar
AllentDan committed
343
    """
344
345
346
347
348
349
350
351
352
    if allow_origins:
        app.add_middleware(
            CORSMiddleware,
            allow_origins=allow_origins,
            allow_credentials=allow_credentials,
            allow_methods=allow_methods,
            allow_headers=allow_headers,
        )

AllentDan's avatar
AllentDan committed
353
354
355
356
357
358
359
360
    VariableInterface.async_engine = AsyncEngine(model_path=model_path,
                                                 instance_num=instance_num,
                                                 tp=tp)
    uvicorn.run(app=app, host=server_name, port=server_port, log_level='info')


if __name__ == '__main__':
    fire.Fire(main)