File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
idl/thrift/coze/loop/llm/domain Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ struct ModelConfig {
1313 8: optional i32 top_k
1414 9: optional double presence_penalty
1515 10: optional double frequency_penalty
16+ 11: optional Thinking thinking
17+ }
18+
19+ struct Thinking {
20+ 1: optional ThinkingOption thinking_option
1621}
1722
1823struct Message {
@@ -118,3 +123,8 @@ typedef string ImageURLDetail (ts.enum="true")
118123const ImageURLDetail image_url_detail_auto = " auto"
119124const ImageURLDetail image_url_detail_low = " low"
120125const ImageURLDetail image_url_detail_high = " high"
126+
127+ typedef string ThinkingOption (ts.enum="true")
128+ const ThinkingOption thinking_option_disabled = " disabled"
129+ const ThinkingOption thinking_option_enabled = " enabled"
130+ const ThinkingOption thinking_option_auto = " auto"
You can’t perform that action at this time.
0 commit comments