mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-07 01:45:27 +08:00
12 lines
315 B
Go
12 lines
315 B
Go
package deepseek
|
|
|
|
import "ds2api/internal/prompt"
|
|
|
|
func MessagesPrepare(messages []map[string]any) string {
|
|
return prompt.MessagesPrepare(messages)
|
|
}
|
|
|
|
func MessagesPrepareWithThinking(messages []map[string]any, thinkingEnabled bool) string {
|
|
return prompt.MessagesPrepareWithThinking(messages, thinkingEnabled)
|
|
}
|