Signed-off-by: Mustafa <mustafa.cetin@intel.com>
Signed-off-by: Harsha Ramayanam <harsha.ramayanam@intel.com>
Co-authored-by: Harsha Ramayanam <harsha.ramayanam@intel.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: XinyaoWa <xinyao.wang@intel.com>
Co-authored-by: Abolfazl Shahbazi <12436063+ashahba@users.noreply.github.com>
Co-authored-by: chen, suyue <suyue.chen@intel.com>
This commit is contained in:
Mustafa
2024-11-18 01:15:42 -08:00
committed by GitHub
parent 2587179224
commit eb91d1f054
22 changed files with 1392 additions and 275 deletions

View File

@@ -8,6 +8,10 @@ from comps import DocSumGateway, MicroService, ServiceOrchestrator, ServiceType
MEGA_SERVICE_HOST_IP = os.getenv("MEGA_SERVICE_HOST_IP", "0.0.0.0")
MEGA_SERVICE_PORT = int(os.getenv("MEGA_SERVICE_PORT", 8888))
DATA_SERVICE_HOST_IP = os.getenv("DATA_SERVICE_HOST_IP", "0.0.0.0")
DATA_SERVICE_PORT = int(os.getenv("DATA_SERVICE_PORT", 7079))
LLM_SERVICE_HOST_IP = os.getenv("LLM_SERVICE_HOST_IP", "0.0.0.0")
LLM_SERVICE_PORT = int(os.getenv("LLM_SERVICE_PORT", 9000))
@@ -19,6 +23,16 @@ class DocSumService:
self.megaservice = ServiceOrchestrator()
def add_remote_service(self):
data = MicroService(
name="multimedia2text",
host=DATA_SERVICE_HOST_IP,
port=DATA_SERVICE_PORT,
endpoint="/v1/multimedia2text",
use_remote_service=True,
service_type=ServiceType.DATAPREP,
)
llm = MicroService(
name="llm",
host=LLM_SERVICE_HOST_IP,
@@ -27,7 +41,9 @@ class DocSumService:
use_remote_service=True,
service_type=ServiceType.LLM,
)
self.megaservice.add(llm)
self.megaservice.add(data).add(llm)
self.megaservice.flow_to(data, llm)
self.gateway = DocSumGateway(megaservice=self.megaservice, host="0.0.0.0", port=self.port)