diff --git a/aidial_client/resources/application.py b/aidial_client/resources/application.py index 9146934..9a85377 100644 --- a/aidial_client/resources/application.py +++ b/aidial_client/resources/application.py @@ -20,7 +20,7 @@ def get(self, app_id: str) -> ApplicationType: def _list_raw(self) -> ApplicationsResponse: return self.http_client.request( cast_to=ApplicationsResponse, - options=FinalRequestOptions(method="GET", url=APPLICATION_PREFIX), + options=FinalRequestOptions(method="GET", url="openai/applications"), ) def list(self) -> List[ApplicationType]: @@ -40,7 +40,7 @@ async def get(self, app_id: str) -> ApplicationType: async def _list_raw(self) -> ApplicationsResponse: return await self.http_client.request( cast_to=ApplicationsResponse, - options=FinalRequestOptions(method="GET", url=APPLICATION_PREFIX), + options=FinalRequestOptions(method="GET", url="openai/applications"), ) async def list(self) -> List[ApplicationType]: