Skip to content

Commit 7a5780e

Browse files
committed
feat: add haystack_service method to AsyncDeepsetClient
1 parent dce44e0 commit 7a5780e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/deepset_mcp/api/client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,7 @@ async def __aexit__(
9494
def pipelines(self, workspace: str) -> PipelineResource:
9595
"""Resource to interact with pipelines in the specified workspace."""
9696
return PipelineResource(client=self, workspace=workspace)
97+
98+
def haystack_service(self) -> HaystackServiceResource:
99+
"""Resource to interact with the Haystack service API."""
100+
return HaystackServiceResource(client=self)

0 commit comments

Comments
 (0)