Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tensorrt_llm/commands/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,14 @@ def launch_mm_encoder_server(
metadata_server_cfg: Optional[MetadataServerConfig] = None,
):
model = encoder_args["model"]
encoder_args.pop("build_config")
mm_encoder = MultimodalEncoder(**encoder_args)

server = OpenAIServer(llm=mm_encoder,
model=model,
server_role=ServerRole.MM_ENCODER,
metadata_server_cfg=metadata_server_cfg)
metadata_server_cfg=metadata_server_cfg,
tool_parser=None)
asyncio.run(server(host, port))


Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_lists/test-db/l0_a10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ l0_a10:
- disaggregated/test_disaggregated_single_gpu.py::test_disaggregated_simple_llama[True-True-TinyLlama-1.1B-Chat-v1.0]
- test_e2e.py::test_openai_chat_guided_decoding
- test_e2e.py::test_openai_chat_multimodal_example ISOLATION
- test_e2e.py::test_openai_mmencoder_example
- test_e2e.py::test_openai_perf_metrics
- test_e2e.py::test_openai_prometheus
- test_e2e.py::test_openai_lora
Expand Down
Loading