move examples gateway (#992)
Co-authored-by: root <root@idc708073.jf.intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Sihan Chen <39623753+Spycsh@users.noreply.github.com>
This commit is contained in:
@@ -3,15 +3,24 @@
|
||||
|
||||
import os
|
||||
|
||||
from comps import MicroService, ServiceOrchestrator, ServiceType, VisualQnAGateway
|
||||
from comps import Gateway, MegaServiceEndpoint, MicroService, ServiceOrchestrator, ServiceType
|
||||
from comps.cores.proto.api_protocol import (
|
||||
ChatCompletionRequest,
|
||||
ChatCompletionResponse,
|
||||
ChatCompletionResponseChoice,
|
||||
ChatMessage,
|
||||
UsageInfo,
|
||||
)
|
||||
from comps.cores.proto.docarray import LLMParams
|
||||
from fastapi import Request
|
||||
from fastapi.responses import StreamingResponse
|
||||
|
||||
MEGA_SERVICE_HOST_IP = os.getenv("MEGA_SERVICE_HOST_IP", "0.0.0.0")
|
||||
MEGA_SERVICE_PORT = int(os.getenv("MEGA_SERVICE_PORT", 8888))
|
||||
LVM_SERVICE_HOST_IP = os.getenv("LVM_SERVICE_HOST_IP", "0.0.0.0")
|
||||
LVM_SERVICE_PORT = int(os.getenv("LLM_SERVICE_PORT", 9399))
|
||||
|
||||
|
||||
class VisualQnAService:
|
||||
class VisualQnAService(Gateway):
|
||||
def __init__(self, host="0.0.0.0", port=8000):
|
||||
self.host = host
|
||||
self.port = port
|
||||
@@ -27,9 +36,58 @@ class VisualQnAService:
|
||||
service_type=ServiceType.LVM,
|
||||
)
|
||||
self.megaservice.add(llm)
|
||||
self.gateway = VisualQnAGateway(megaservice=self.megaservice, host="0.0.0.0", port=self.port)
|
||||
|
||||
async def handle_request(self, request: Request):
|
||||
data = await request.json()
|
||||
stream_opt = data.get("stream", False)
|
||||
chat_request = ChatCompletionRequest.parse_obj(data)
|
||||
prompt, images = self._handle_message(chat_request.messages)
|
||||
parameters = LLMParams(
|
||||
max_new_tokens=chat_request.max_tokens if chat_request.max_tokens else 1024,
|
||||
top_k=chat_request.top_k if chat_request.top_k else 10,
|
||||
top_p=chat_request.top_p if chat_request.top_p else 0.95,
|
||||
temperature=chat_request.temperature if chat_request.temperature else 0.01,
|
||||
frequency_penalty=chat_request.frequency_penalty if chat_request.frequency_penalty else 0.0,
|
||||
presence_penalty=chat_request.presence_penalty if chat_request.presence_penalty else 0.0,
|
||||
repetition_penalty=chat_request.repetition_penalty if chat_request.repetition_penalty else 1.03,
|
||||
streaming=stream_opt,
|
||||
)
|
||||
result_dict, runtime_graph = await self.megaservice.schedule(
|
||||
initial_inputs={"prompt": prompt, "image": images[0]}, llm_parameters=parameters
|
||||
)
|
||||
for node, response in result_dict.items():
|
||||
# Here it suppose the last microservice in the megaservice is LVM.
|
||||
if (
|
||||
isinstance(response, StreamingResponse)
|
||||
and node == list(self.megaservice.services.keys())[-1]
|
||||
and self.megaservice.services[node].service_type == ServiceType.LVM
|
||||
):
|
||||
return response
|
||||
last_node = runtime_graph.all_leaves()[-1]
|
||||
response = result_dict[last_node]["text"]
|
||||
choices = []
|
||||
usage = UsageInfo()
|
||||
choices.append(
|
||||
ChatCompletionResponseChoice(
|
||||
index=0,
|
||||
message=ChatMessage(role="assistant", content=response),
|
||||
finish_reason="stop",
|
||||
)
|
||||
)
|
||||
return ChatCompletionResponse(model="visualqna", choices=choices, usage=usage)
|
||||
|
||||
def start(self):
|
||||
super().__init__(
|
||||
megaservice=self.megaservice,
|
||||
host=self.host,
|
||||
port=self.port,
|
||||
endpoint=str(MegaServiceEndpoint.VISUAL_QNA),
|
||||
input_datatype=ChatCompletionRequest,
|
||||
output_datatype=ChatCompletionResponse,
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
visualqna = VisualQnAService(host=MEGA_SERVICE_HOST_IP, port=MEGA_SERVICE_PORT)
|
||||
visualqna = VisualQnAService(port=MEGA_SERVICE_PORT)
|
||||
visualqna.add_remote_service()
|
||||
visualqna.start()
|
||||
|
||||
Reference in New Issue
Block a user