mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-14 22:33:48 +00:00
Some checks failed
SqlStore Integration Tests / test-postgres (3.12) (push) Failing after 0s
SqlStore Integration Tests / test-postgres (3.13) (push) Failing after 0s
Integration Auth Tests / test-matrix (oauth2_token) (push) Failing after 1s
Python Package Build Test / build (3.12) (push) Failing after 1s
Python Package Build Test / build (3.13) (push) Failing after 1s
Integration Tests (Replay) / Integration Tests (, , , client=, ) (push) Failing after 3s
Test External Providers Installed via Module / test-external-providers-from-module (venv) (push) Has been skipped
Vector IO Integration Tests / test-matrix (push) Failing after 5s
API Conformance Tests / check-schema-compatibility (push) Successful in 9s
Test External API and Providers / test-external (venv) (push) Failing after 4s
Unit Tests / unit-tests (3.12) (push) Failing after 4s
Unit Tests / unit-tests (3.13) (push) Failing after 4s
UI Tests / ui-tests (22) (push) Successful in 38s
Pre-commit / pre-commit (push) Successful in 1m27s
# What does this PR do? Allows passing through extra_body parameters to inference providers. With this, we removed the 2 vllm-specific parameters from completions API into `extra_body`. Before/After <img width="1883" height="324" alt="image" src="https://github.com/user-attachments/assets/acb27c08-c748-46c9-b1da-0de64e9908a1" /> closes #2720 ## Test Plan CI and added new test ``` ❯ uv run pytest -s -v tests/integration/ --stack-config=server:starter --inference-mode=record -k 'not( builtin_tool or safety_with_image or code_interpreter or test_rag ) and test_openai_completion_guided_choice' --setup=vllm --suite=base --color=yes Uninstalled 3 packages in 125ms Installed 3 packages in 19ms INFO 2025-10-10 14:29:54,317 tests.integration.conftest:118 tests: Applying setup 'vllm' for suite base INFO 2025-10-10 14:29:54,331 tests.integration.conftest:47 tests: Test stack config type: server (stack_config=server:starter) ============================================================================================================== test session starts ============================================================================================================== platform darwin -- Python 3.12.11, pytest-8.4.2, pluggy-1.6.0 -- /Users/erichuang/projects/llama-stack-1/.venv/bin/python cachedir: .pytest_cache metadata: {'Python': '3.12.11', 'Platform': 'macOS-15.6.1-arm64-arm-64bit', 'Packages': {'pytest': '8.4.2', 'pluggy': '1.6.0'}, 'Plugins': {'anyio': '4.9.0', 'html': '4.1.1', 'socket': '0.7.0', 'asyncio': '1.1.0', 'json-report': '1.5.0', 'timeout': '2.4.0', 'metadata': '3.1.1', 'cov': '6.2.1', 'nbval': '0.11.0'}} rootdir: /Users/erichuang/projects/llama-stack-1 configfile: pyproject.toml plugins: anyio-4.9.0, html-4.1.1, socket-0.7.0, asyncio-1.1.0, json-report-1.5.0, timeout-2.4.0, metadata-3.1.1, cov-6.2.1, nbval-0.11.0 asyncio: mode=Mode.AUTO, asyncio_default_fixture_loop_scope=None, asyncio_default_test_loop_scope=function collected 285 items / 284 deselected / 1 selected tests/integration/inference/test_openai_completion.py::test_openai_completion_guided_choice[txt=vllm/Qwen/Qwen3-0.6B] instantiating llama_stack_client Starting llama stack server with config 'starter' on port 8321... Waiting for server at http://localhost:8321... (0.0s elapsed) Waiting for server at http://localhost:8321... (0.5s elapsed) Waiting for server at http://localhost:8321... (5.1s elapsed) Waiting for server at http://localhost:8321... (5.6s elapsed) Waiting for server at http://localhost:8321... (10.1s elapsed) Waiting for server at http://localhost:8321... (10.6s elapsed) Server is ready at http://localhost:8321 llama_stack_client instantiated in 11.773s PASSEDTerminating llama stack server process... Terminating process 98444 and its group... Server process and children terminated gracefully ============================================================================================================= slowest 10 durations ============================================================================================================== 11.88s setup tests/integration/inference/test_openai_completion.py::test_openai_completion_guided_choice[txt=vllm/Qwen/Qwen3-0.6B] 3.02s call tests/integration/inference/test_openai_completion.py::test_openai_completion_guided_choice[txt=vllm/Qwen/Qwen3-0.6B] 0.01s teardown tests/integration/inference/test_openai_completion.py::test_openai_completion_guided_choice[txt=vllm/Qwen/Qwen3-0.6B] ================================================================================================ 1 passed, 284 deselected, 3 warnings in 16.21s ================================================================================================= ```
881 lines
22 KiB
JSON
881 lines
22 KiB
JSON
{
|
|
"test_id": null,
|
|
"request": {
|
|
"method": "POST",
|
|
"url": "https://api.openai.com/v1/v1/models",
|
|
"headers": {},
|
|
"body": {},
|
|
"endpoint": "/v1/models",
|
|
"model": ""
|
|
},
|
|
"response": {
|
|
"body": [
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-0613",
|
|
"created": 1686588896,
|
|
"object": "model",
|
|
"owned_by": "openai"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4",
|
|
"created": 1687882411,
|
|
"object": "model",
|
|
"owned_by": "openai"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo",
|
|
"created": 1677610602,
|
|
"object": "model",
|
|
"owned_by": "openai"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "sora-2-pro",
|
|
"created": 1759708663,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-audio-mini-2025-10-06",
|
|
"created": 1759512137,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-realtime-mini",
|
|
"created": 1759517133,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-realtime-mini-2025-10-06",
|
|
"created": 1759517175,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "sora-2",
|
|
"created": 1759708615,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "davinci-002",
|
|
"created": 1692634301,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "babbage-002",
|
|
"created": 1692634615,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo-instruct",
|
|
"created": 1692901427,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo-instruct-0914",
|
|
"created": 1694122472,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "dall-e-3",
|
|
"created": 1698785189,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "dall-e-2",
|
|
"created": 1698798177,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-1106-preview",
|
|
"created": 1698957206,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo-1106",
|
|
"created": 1698959748,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "tts-1-hd",
|
|
"created": 1699046015,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "tts-1-1106",
|
|
"created": 1699053241,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "tts-1-hd-1106",
|
|
"created": 1699053533,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "text-embedding-3-small",
|
|
"created": 1705948997,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "text-embedding-3-large",
|
|
"created": 1705953180,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-0125-preview",
|
|
"created": 1706037612,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-turbo-preview",
|
|
"created": 1706037777,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo-0125",
|
|
"created": 1706048358,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-turbo",
|
|
"created": 1712361441,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4-turbo-2024-04-09",
|
|
"created": 1712601677,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o",
|
|
"created": 1715367049,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-2024-05-13",
|
|
"created": 1715368132,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-2024-07-18",
|
|
"created": 1721172717,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini",
|
|
"created": 1721172741,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-2024-08-06",
|
|
"created": 1722814719,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "chatgpt-4o-latest",
|
|
"created": 1723515131,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1-mini-2024-09-12",
|
|
"created": 1725648979,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1-mini",
|
|
"created": 1725649008,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-realtime-preview-2024-10-01",
|
|
"created": 1727131766,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-audio-preview-2024-10-01",
|
|
"created": 1727389042,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-audio-preview",
|
|
"created": 1727460443,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-realtime-preview",
|
|
"created": 1727659998,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "omni-moderation-latest",
|
|
"created": 1731689265,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "omni-moderation-2024-09-26",
|
|
"created": 1732734466,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-realtime-preview-2024-12-17",
|
|
"created": 1733945430,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-audio-preview-2024-12-17",
|
|
"created": 1734034239,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-realtime-preview-2024-12-17",
|
|
"created": 1734112601,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-audio-preview-2024-12-17",
|
|
"created": 1734115920,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1-2024-12-17",
|
|
"created": 1734326976,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1",
|
|
"created": 1734375816,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-realtime-preview",
|
|
"created": 1734387380,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-audio-preview",
|
|
"created": 1734387424,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o3-mini",
|
|
"created": 1737146383,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o3-mini-2025-01-31",
|
|
"created": 1738010200,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-2024-11-20",
|
|
"created": 1739331543,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-search-preview-2025-03-11",
|
|
"created": 1741388170,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-search-preview",
|
|
"created": 1741388720,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-search-preview-2025-03-11",
|
|
"created": 1741390858,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-search-preview",
|
|
"created": 1741391161,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-transcribe",
|
|
"created": 1742068463,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-transcribe",
|
|
"created": 1742068596,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1-pro-2025-03-19",
|
|
"created": 1742251504,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o1-pro",
|
|
"created": 1742251791,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-mini-tts",
|
|
"created": 1742403959,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o3-2025-04-16",
|
|
"created": 1744133301,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o4-mini-2025-04-16",
|
|
"created": 1744133506,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o3",
|
|
"created": 1744225308,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o4-mini",
|
|
"created": 1744225351,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1-2025-04-14",
|
|
"created": 1744315746,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1",
|
|
"created": 1744316542,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1-mini-2025-04-14",
|
|
"created": 1744317547,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1-mini",
|
|
"created": 1744318173,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1-nano-2025-04-14",
|
|
"created": 1744321025,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4.1-nano",
|
|
"created": 1744321707,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-image-1",
|
|
"created": 1745517030,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "codex-mini-latest",
|
|
"created": 1746673257,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-realtime-preview-2025-06-03",
|
|
"created": 1748907838,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-4o-audio-preview-2025-06-03",
|
|
"created": 1748908498,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o4-mini-deep-research",
|
|
"created": 1749685485,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "o4-mini-deep-research-2025-06-26",
|
|
"created": 1750866121,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-chat-latest",
|
|
"created": 1754073306,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-2025-08-07",
|
|
"created": 1754075360,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5",
|
|
"created": 1754425777,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-mini-2025-08-07",
|
|
"created": 1754425867,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-mini",
|
|
"created": 1754425928,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-nano-2025-08-07",
|
|
"created": 1754426303,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-nano",
|
|
"created": 1754426384,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-audio-2025-08-28",
|
|
"created": 1756256146,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-realtime",
|
|
"created": 1756271701,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-realtime-2025-08-28",
|
|
"created": 1756271773,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-audio",
|
|
"created": 1756339249,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-codex",
|
|
"created": 1757527818,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-image-1-mini",
|
|
"created": 1758845821,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-pro-2025-10-06",
|
|
"created": 1759469707,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-5-pro",
|
|
"created": 1759469822,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-audio-mini",
|
|
"created": 1759512027,
|
|
"object": "model",
|
|
"owned_by": "system"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "gpt-3.5-turbo-16k",
|
|
"created": 1683758102,
|
|
"object": "model",
|
|
"owned_by": "openai-internal"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "tts-1",
|
|
"created": 1681940951,
|
|
"object": "model",
|
|
"owned_by": "openai-internal"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "whisper-1",
|
|
"created": 1677532384,
|
|
"object": "model",
|
|
"owned_by": "openai-internal"
|
|
}
|
|
},
|
|
{
|
|
"__type__": "openai.types.model.Model",
|
|
"__data__": {
|
|
"id": "text-embedding-ada-002",
|
|
"created": 1671217299,
|
|
"object": "model",
|
|
"owned_by": "openai-internal"
|
|
}
|
|
}
|
|
],
|
|
"is_streaming": false
|
|
},
|
|
"id_normalization_mapping": {}
|
|
}
|