mirror of
https://github.com/mudler/LocalAI.git
synced 2025-06-19 15:33:45 +00:00
fix: byte utf-8 encode results from autogptq
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user