File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
agents/ten_packages/extension/bedrock_v2v_python Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -960,13 +960,17 @@ async def on_video_frame(
960960 ) -> None :
961961 video_frame_name = video_frame .get_name ()
962962 ten_env .log_debug ("on_video_frame name {}" .format (video_frame_name ))
963-
963+
964964 async def on_call_chat_completion (self , async_ten_env , ** kargs ):
965965 """Implementation of abstract method from AsyncLLMBaseExtension."""
966- async_ten_env .log_info ("on_call_chat_completion not supported in BedrockV2VExtension" )
966+ async_ten_env .log_info (
967+ "on_call_chat_completion not supported in BedrockV2VExtension"
968+ )
967969 return None
968-
970+
969971 async def on_data_chat_completion (self , async_ten_env , ** kargs ):
970972 """Implementation of abstract method from AsyncLLMBaseExtension."""
971- async_ten_env .log_info ("on_data_chat_completion not supported in BedrockV2VExtension" )
973+ async_ten_env .log_info (
974+ "on_data_chat_completion not supported in BedrockV2VExtension"
975+ )
972976 return None
You can’t perform that action at this time.
0 commit comments