File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,22 @@ def pin_lora(self, lora_id: int) -> bool:
7070 def list_loras (self ) -> Set [int ]:
7171 return self .driver_worker .list_loras ()
7272
73+ def add_prompt_adapter (self , prompt_adapter_request ) -> bool :
74+ raise NotImplementedError (
75+ "Soft prompt is currently not supported by the Neuron backend." )
76+
77+ def remove_prompt_adapter (self , prompt_adapter_id : int ) -> bool :
78+ raise NotImplementedError (
79+ "Soft prompt is currently not supported by the Neuron backend." )
80+
81+ def pin_prompt_adapter (self , prompt_adapter_id : int ) -> bool :
82+ raise NotImplementedError (
83+ "Soft prompt is currently not supported by the Neuron backend." )
84+
85+ def list_prompt_adapters (self ) -> Set [int ]:
86+ raise NotImplementedError (
87+ "Soft prompt is currently not supported by the Neuron backend." )
88+
7389 def check_health (self ) -> None :
7490 # NeuronExecutor will always be healthy as long as
7591 # it's running.
You can’t perform that action at this time.
0 commit comments