refac: allow min_p for openai requests

This commit is contained in:
Timothy Jaeryang Baek 2025-05-23 21:28:02 +04:00
parent 30d15c1b4b
commit 797c7d4e56

View File

@ -57,6 +57,7 @@ def apply_model_params_to_body_openai(params: dict, form_data: dict) -> dict:
mappings = {
"temperature": float,
"top_p": float,
"min_p": float,
"max_tokens": int,
"frequency_penalty": float,
"presence_penalty": float,