feat(openai): update model YAMLs [bot]#1146
Merged
Merged
Conversation
Contributor
|
/test-models |
Collaborator
Gateway test results
Failures (1)
ErrorCode snippet# OpenAI-compatible STT (works with OpenAI and Groq)
from pathlib import Path
from openai import OpenAI
client = OpenAI(api_key="***", base_url="https://internal.devtest.truefoundry.tech/api/llm/api/llm")
audio_path = Path(__file__).parent / "hello.wav"
with open(audio_path, "rb") as audio_file:
response = client.audio.transcriptions.create(
model="test-v2-openai/gpt-realtime-whisper",
file=audio_file,
)
_stt_output = response.text
print(_stt_output)
assert _stt_output, "VALIDATION FAILED: Transcription returned empty text"
assert len(_stt_output.strip()) > 0, f"VALIDATION FAILED: Transcription is blank: '{_stt_output}'"Skipped (2)
Skip reason
Skip reason |
Contributor
|
/test-models |
Collaborator
Gateway test results
Skipped (3)
Skip reason
Skip reason
Skip reason |
harshiv-26
approved these changes
May 22, 2026
Contributor
|
/test-models |
Collaborator
Gateway test results
Skipped (3)
Skip reason
Skip reason
Skip reason |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Auto-generated by poc-agent for provider
openai.Note
Low Risk
Low risk: updates are limited to model registry YAML metadata (pricing/limits/modalities/sources) and README counts, with no executable code changes.
Overview
Updates the model registry with refreshed metadata across providers: DeepInfra
gemma-4-26B-A4B-itpricing adjustments andgemma-4-31B-itnow advertising video input; Google Vertexgemini-3.1-flash-litetoken limits bumped to65536and an additional source link added.Adds new Qwen entries for OpenRouter (
qwen/qwen3.7-max) and Together AI (Qwen/Qwen3.7-Max), and expands existing configs (e.g., OpenRouterinclusionai/ling-2.6-1tprovisioning set; TogetherQwen3.6-35B-A3B-FP8addstool_choiceplus image/video modalities; Togethergemma-4-E2B-itadds sources/status). README provider model counts are updated to reflect the new models.Reviewed by Cursor Bugbot for commit 8a3df67. Bugbot is set up for automated code reviews on this repo. Configure here.