Skip to content
Closed
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
2 changes: 1 addition & 1 deletion tensorrt_llm/llmapi/llm_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -2765,7 +2765,7 @@ class TorchLlmArgs(BaseLlmArgs):
# PrivateVars
_quant_config: Optional[QuantConfig] = PrivateAttr(default=None)

_disable_flash_infer_sampling: bool = PrivateAttr(default=True)
_disable_flash_infer_sampling: bool = PrivateAttr(default=False)
"""Unless this is set to False, FlashInfer.sampling is not used, even if available."""

@property
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ def test_openai_compatible_json_schema(client: openai.OpenAI, model_name: str):
"type": "json_schema",
"json_schema": json_schema
},
temperature=0.0,
)

message = chat_completion.choices[0].message
Expand Down
Loading