2024-12-06 14:31:27 +08:00
|
|
|
package constant
|
|
|
|
|
|
|
|
|
|
var (
|
2024-12-24 20:46:02 +08:00
|
|
|
FinishReasonStop = "stop"
|
|
|
|
|
FinishReasonToolCalls = "tool_calls"
|
|
|
|
|
FinishReasonLength = "length"
|
|
|
|
|
FinishReasonFunctionCall = "function_call"
|
|
|
|
|
FinishReasonContentFilter = "content_filter"
|
2024-12-06 14:31:27 +08:00
|
|
|
)
|