RAG itself is annoying to properly implement, plucking sentences with no context is useless. Also it should not be a part of main package, same for goes for tui. The number of global vars is absurd.
13 lines
314 B
TOML
13 lines
314 B
TOML
APIURL = "http://localhost:8080/v1/chat/completions"
|
|
EmbedURL = "http://localhost:8080/v1/embeddings"
|
|
ShowSys = true
|
|
LogFile = "log.txt"
|
|
UserRole = "user"
|
|
ToolRole = "tool"
|
|
AssistantRole = "assistant"
|
|
AssistantIcon = "<🤖>: "
|
|
UserIcon = "<user>: "
|
|
ToolIcon = "<>>: "
|
|
SysDir = "sysprompts"
|
|
ChunkLimit = 100000
|