23 lines
642 B
Go
23 lines
642 B
Go
package conf
|
|
|
|
var (
|
|
BuildVersion = "dev"
|
|
BuildTime = "<unknown>"
|
|
BuildMode = "development"
|
|
PackageLicense = "Unlicense"
|
|
PackageCopyright = "This is an unlicensed software (under public domain) by Luo Tianyi Codelabs <https://lty.name/>."
|
|
|
|
DefaultListen = ":7120"
|
|
DefaultAgentsDir = "agents"
|
|
DefaultLogLevel = "dbg"
|
|
DefaultMsgLogPath = "logs"
|
|
|
|
DefaultAgentName = "未名"
|
|
DefaultAgentDescription = "这个 Agent 没有名字"
|
|
DefaultAgentPrimaryColor = "#444e8d"
|
|
DefaultAgentSecondaryColor = "#9f9ff5"
|
|
DefaultAgentAccentColor = "#eeaf5b"
|
|
|
|
DefaultGoogleAIModel = "gemini-1.5-flash"
|
|
)
|