fix(helm): route /transcribe to the gateway and drop pinned botocore operation from test

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
yassin 2026-09-17 01:06:15 +00:00
parent 13e38582d1
commit 8533dc9673
2 changed files with 1 additions and 2 deletions

View file

@ -66,7 +66,7 @@
"/v1/video" "/v1/videos" "/video" "/videos" "/v1/search" "/search"
"/v1/containers" "/containers" "/v1/evals" "/v1/memory" "/queue/chat"
"/v1beta" "/interactions"
"/anthropic" "/azure" "/azure_ai" "/aws" "/bedrock" "/comprehendmedical" "/cohere" "/gemini" "/google"
"/anthropic" "/azure" "/azure_ai" "/aws" "/bedrock" "/comprehendmedical" "/transcribe" "/cohere" "/gemini" "/google"
"/vertex_ai" "/vertex-ai" "/assemblyai" "/eu.assemblyai" "/langfuse" "/vllm"
"/mistral" "/groq" "/voyage" "/cursor" "/milvus" "/openai_passthrough"
"/toolset"

View file

@ -35,7 +35,6 @@ class TestTranscribeSupportedOperations:
assert transcribe_supported_operations() == frozenset(
get_session().get_service_model("transcribe").operation_names
)
assert "StartTranscriptionJob" in transcribe_supported_operations()
class TestTranscribePassthroughHandler: