refactor: Renamed summarize_prompt setting to summarization_prompt

This commit is contained in:
2025-11-07 11:09:48 -07:00
parent 304129d793
commit 9619b7908f
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ enabled_mcp_servers: null # Which MCP servers to enable by default (e.g.
# See the [Session documentation](./docs/SESSIONS.md) for more information # See the [Session documentation](./docs/SESSIONS.md) for more information
save_session: null # Controls the persistence of the session. If true, auto save; if false, don't auto-save save; if null, ask the user what to do save_session: null # Controls the persistence of the session. If true, auto save; if false, don't auto-save save; if null, ask the user what to do
compression_threshold: 4000 # Compress the session when the token count reaches or exceeds this threshold compression_threshold: 4000 # Compress the session when the token count reaches or exceeds this threshold
summarize_prompt: > # The text prompt used for creating a concise summary of session message summarization_prompt: > # The text prompt used for creating a concise summary of session message
'Summarize the discussion briefly in 200 words or less to use as a prompt for future context.' 'Summarize the discussion briefly in 200 words or less to use as a prompt for future context.'
summary_prompt: > # The text prompt used for including the summary of the entire session as context to the model summary_prompt: > # The text prompt used for including the summary of the entire session as context to the model
'This is a summary of the chat history as a recap: ' 'This is a summary of the chat history as a recap: '
+7 -7
View File
@@ -84,7 +84,7 @@ const CLIENTS_FIELD: &str = "clients";
const SYNC_MODELS_URL: &str = const SYNC_MODELS_URL: &str =
"https://raw.githubusercontent.com/Dark-Alex-17/loki/refs/heads/main/models.yaml"; "https://raw.githubusercontent.com/Dark-Alex-17/loki/refs/heads/main/models.yaml";
const SUMMARIZE_PROMPT: &str = const SUMMARIZATION_PROMPT: &str =
"Summarize the discussion briefly in 200 words or less to use as a prompt for future context."; "Summarize the discussion briefly in 200 words or less to use as a prompt for future context.";
const SUMMARY_PROMPT: &str = "This is a summary of the chat history as a recap: "; const SUMMARY_PROMPT: &str = "This is a summary of the chat history as a recap: ";
@@ -145,7 +145,7 @@ pub struct Config {
pub save_session: Option<bool>, pub save_session: Option<bool>,
pub compression_threshold: usize, pub compression_threshold: usize,
pub summarize_prompt: Option<String>, pub summarization_prompt: Option<String>,
pub summary_prompt: Option<String>, pub summary_prompt: Option<String>,
pub rag_embedding_model: Option<String>, pub rag_embedding_model: Option<String>,
@@ -231,7 +231,7 @@ impl Default for Config {
save_session: None, save_session: None,
compression_threshold: 4000, compression_threshold: 4000,
summarize_prompt: None, summarization_prompt: None,
summary_prompt: None, summary_prompt: None,
rag_embedding_model: None, rag_embedding_model: None,
@@ -1561,9 +1561,9 @@ impl Config {
let prompt = config let prompt = config
.read() .read()
.summarize_prompt .summarization_prompt
.clone() .clone()
.unwrap_or_else(|| SUMMARIZE_PROMPT.into()); .unwrap_or_else(|| SUMMARIZATION_PROMPT.into());
let input = Input::from_str(config, &prompt, None); let input = Input::from_str(config, &prompt, None);
let summary = input.fetch_chat_text().await?; let summary = input.fetch_chat_text().await?;
let summary_prompt = config let summary_prompt = config
@@ -2779,8 +2779,8 @@ impl Config {
if let Some(Some(v)) = read_env_value::<usize>(&get_env_name("compression_threshold")) { if let Some(Some(v)) = read_env_value::<usize>(&get_env_name("compression_threshold")) {
self.compression_threshold = v; self.compression_threshold = v;
} }
if let Some(v) = read_env_value::<String>(&get_env_name("summarize_prompt")) { if let Some(v) = read_env_value::<String>(&get_env_name("summarization_prompt")) {
self.summarize_prompt = v; self.summarization_prompt = v;
} }
if let Some(v) = read_env_value::<String>(&get_env_name("summary_prompt")) { if let Some(v) = read_env_value::<String>(&get_env_name("summary_prompt")) {
self.summary_prompt = v; self.summary_prompt = v;