Skip to content

Commit

Permalink
Fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
TamiTakamiya committed Feb 18, 2025
1 parent 23483b5 commit 2d9bdbf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ansible_ai_connect/ai/api/model_pipelines/http/pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,15 @@ def invoke(self, params: ChatBotParameters) -> ChatBotResponse:
raise ChatbotInternalServerException(detail=detail)


class HttpStreamingChatBotMetaData(HttpMetaData):

def __init__(self, config: HttpConfiguration):
super().__init__(config=config)


@Register(api_type="http")
class HttpStreamingChatBotPipeline(
HttpChatBotMetaData, ModelPipelineStreamingChatBot[HttpConfiguration]
HttpStreamingChatBotMetaData, ModelPipelineStreamingChatBot[HttpConfiguration]
):

def __init__(self, config: HttpConfiguration):
Expand Down

0 comments on commit 2d9bdbf

Please sign in to comment.