mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-18 03:57:06 +08:00
v0.3.8
This commit is contained in:
@@ -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)
|
||||
}
|
||||
Reference in New Issue
Block a user