We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aca64c commit 186b1aaCopy full SHA for 186b1aa
python/sglang/srt/openai_api/adapter.py
@@ -555,7 +555,6 @@ def v1_generate_request(
555
"temperature": request.temperature,
556
"max_new_tokens": request.max_tokens,
557
"min_new_tokens": request.min_tokens,
558
- "thinking_budget": request.thinking_budget,
559
"stop": request.stop,
560
"stop_token_ids": request.stop_token_ids,
561
"top_p": request.top_p,
python/sglang/srt/openai_api/protocol.py
@@ -172,7 +172,6 @@ class CompletionRequest(BaseModel):
172
top_k: int = -1
173
min_p: float = 0.0
174
min_tokens: int = 0
175
- thinking_budget: Optional[int] = None
176
json_schema: Optional[str] = None
177
regex: Optional[str] = None
178
ebnf: Optional[str] = None
0 commit comments