This commit is contained in:
leokun
2026-06-30 10:38:52 +08:00
commit c083be5ec2
312 changed files with 146628 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package prompt
import "strings"
const fakeModelIDPlaceholder = "{{FAKE_MODEL_ID}}"
// RenderPromptTemplate 将 prompt 资产中的占位符替换为当前请求的真实模型名称。
func RenderPromptTemplate(text string, modelName string) string {
replacement := strings.TrimSpace(modelName)
if replacement == "" {
replacement = "当前请求模型"
}
return strings.ReplaceAll(text, fakeModelIDPlaceholder, replacement)
}