Source code for agentscope_runtime.engine.deployers.base
# -*- coding: utf-8 -*-importuuidfromabcimportabstractmethod,ABCfromtypingimportDict# there is not many attributes in it, consider it as interface, instead of# pydantic BaseModel
[docs]@abstractmethodasyncdefdeploy(self,*args,**kwargs)->Dict[str,str]:"""Deploy the service and return a dictionary with deploy_id and URL."""raiseNotImplementedError