File tree Expand file tree Collapse file tree
src/deepset_mcp/api/search_history Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ def _base_path(self) -> str:
3232 return f"v1/workspaces/{ quote (self ._workspace , safe = '' )} /search_history"
3333
3434 def _pipeline_path (self , pipeline_name : str ) -> str :
35- return f"v1/workspaces/{ quote (self ._workspace , safe = '' )} /pipelines/{ quote (pipeline_name , safe = '' )} /search_history"
35+ return (
36+ f"v1/workspaces/{ quote (self ._workspace , safe = '' )} /pipelines/{ quote (pipeline_name , safe = '' )} /search_history"
37+ )
3638
37- async def list (
38- self , limit : int = 10 , after : str | None = None
39- ) -> PaginatedResponse [SearchHistoryEntry ]:
39+ async def list (self , limit : int = 10 , after : str | None = None ) -> PaginatedResponse [SearchHistoryEntry ]:
4040 """List search history entries in the workspace.
4141
4242 :param limit: Maximum number of entries to return per page.
You can’t perform that action at this time.
0 commit comments