feat flux 部署
fix
This commit is contained in:
@@ -35,6 +35,7 @@ class GenerateImage:
|
|||||||
# self.connection = pika.BlockingConnection(pika.ConnectionParameters(**RABBITMQ_PARAMS))
|
# self.connection = pika.BlockingConnection(pika.ConnectionParameters(**RABBITMQ_PARAMS))
|
||||||
# self.channel = self.connection.channel()
|
# self.channel = self.connection.channel()
|
||||||
# self.minio_client = Minio(MINIO_URL, access_key=MINIO_ACCESS, secret_key=MINIO_SECRET, secure=MINIO_SECURE)
|
# self.minio_client = Minio(MINIO_URL, access_key=MINIO_ACCESS, secret_key=MINIO_SECRET, secure=MINIO_SECURE)
|
||||||
|
self.version = request_data.version
|
||||||
if request_data.version == "fast":
|
if request_data.version == "fast":
|
||||||
self.grpc_client = grpcclient.InferenceServerClient(url=FAST_GI_MODEL_URL)
|
self.grpc_client = grpcclient.InferenceServerClient(url=FAST_GI_MODEL_URL)
|
||||||
else:
|
else:
|
||||||
@@ -146,7 +147,10 @@ class GenerateImage:
|
|||||||
input_mode.set_data_from_numpy(mode_obj)
|
input_mode.set_data_from_numpy(mode_obj)
|
||||||
|
|
||||||
inputs = [input_text, input_image, input_mode]
|
inputs = [input_text, input_image, input_mode]
|
||||||
ctx = self.grpc_client.async_infer(model_name=GI_MODEL_NAME, inputs=inputs, callback=self.callback)
|
if self.version == "fast":
|
||||||
|
ctx = self.grpc_client.async_infer(model_name=GI_MODEL_NAME, inputs=inputs, callback=self.callback)
|
||||||
|
else:
|
||||||
|
ctx = self.grpc_client.async_infer(model_name=FAST_GI_MODEL_NAME, inputs=inputs, callback=self.callback)
|
||||||
time_out = 600
|
time_out = 600
|
||||||
generate_data = None
|
generate_data = None
|
||||||
while time_out > 0:
|
while time_out > 0:
|
||||||
|
|||||||
Reference in New Issue
Block a user