"docs/vscode:/vscode.git/clone" did not exist on "83609791d2ceeb628e0d1f5ea60a64c132eb083c"
Unverified Commit 44cc7661 authored by sangjune.park's avatar sangjune.park Committed by GitHub
Browse files

[Bugfix] Fix OpenVINOExecutor abstractmethod error (#6296)


Signed-off-by: default avatarsangjune.park <sangjune.park@navercorp.com>
parent b422d496
......@@ -90,6 +90,22 @@ class OpenVINOExecutor(ExecutorBase):
def list_loras(self) -> Set[int]:
return self.driver_worker.list_loras()
def add_prompt_adapter(self, prompt_adapter_request) -> bool:
raise NotImplementedError(
"Soft prompt is currently not supported by the OPENVINO backend.")
def remove_prompt_adapter(self, prompt_adapter_id: int) -> bool:
raise NotImplementedError(
"Soft prompt is currently not supported by the OPENVINO backend.")
def pin_prompt_adapter(self, prompt_adapter_id: int) -> bool:
raise NotImplementedError(
"Soft prompt is currently not supported by the OPENVINO backend.")
def list_prompt_adapters(self) -> Set[int]:
raise NotImplementedError(
"Soft prompt is currently not supported by the OPENVINO backend.")
def check_health(self) -> None:
# OpenVINOExecutor will always be healthy as long as
# it's running.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment