Skip to content

feat: use agents-api-service-v2 #242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions phc/services/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def invoke_basic(self, body: Union[str, List[Dict]]):
permission.
"""
return self._api_call(
"/v1/agents/basic/invoke", json={"input": body}, http_verb="POST"
"/v1/agents-v2/basic/invoke", json={"input": body}, http_verb="POST"
)

def get_token(self):
Expand Down Expand Up @@ -65,4 +65,4 @@ def get_token(self):
)
])
"""
return self._api_call("/v1/agents/token", http_verb="GET")
return self._api_call("/v1/agents-v2/token", http_verb="GET")
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "phc"
version = "1.1.0"
version = "1.2.0"
description = "Python SDK for the LifeOmic platform"
authors = ["LifeOmic <[email protected]>"]
license = "MIT"
Expand Down
Loading