fix: byte utf-8 encode results from autogptq

Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
Ettore Di Giacinto 2023-08-08 01:20:07 +02:00
parent 3c8fc37c56
commit bb7772a364

View File

@ -61,7 +61,7 @@ class BackendServicer(backend_pb2_grpc.BackendServicer):
top_p=top_p,
repetition_penalty=penalty,
)
return backend_pb2.Result(message=bytes(pipeline(request.Prompt)[0]["generated_text"]))
return backend_pb2.Result(message=bytes(pipeline(request.Prompt)[0]["generated_text"], encoding='utf-8'))
def PredictStream(self, request, context):
# Implement PredictStream RPC