move from /v1 to /v1alpha. also move POST /test to GET /health

This commit is contained in:
Raghotham Murthy 2025-10-27 13:05:27 -07:00
parent 4306ecdbe7
commit 659e6ee86c
3 changed files with 12 additions and 12 deletions

View file

@ -257,7 +257,7 @@ class TestDynamicProviderManagement:
)
# Test connection
response = await provider_impl.test_provider_connection(api=Api.inference.value, provider_id="test-health")
response = await provider_impl.health(api=Api.inference.value, provider_id="test-health")
# Verify response
assert response.success is True
@ -282,7 +282,7 @@ class TestDynamicProviderManagement:
)
# Test connection
response = await provider_impl.test_provider_connection(
response = await provider_impl.health(
api=Api.inference.value, provider_id="test-unhealthy"
)