From 3365e7634d6fb40ea7ed37ac90726c8d6d82832f Mon Sep 17 00:00:00 2001 From: syui Date: Sun, 1 Mar 2026 14:51:00 +0900 Subject: [PATCH] fix config path --- src/core/reader.rs | 2 +- src/core/writer.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/reader.rs b/src/core/reader.rs index e306452..ba156b4 100644 --- a/src/core/reader.rs +++ b/src/core/reader.rs @@ -5,7 +5,7 @@ use std::path::PathBuf; fn config_dir() -> PathBuf { dirs::config_dir() .unwrap_or_else(|| PathBuf::from(".")) - .join("aigpt") + .join("ai.syui.gpt") } pub fn read_core() -> Result { diff --git a/src/core/writer.rs b/src/core/writer.rs index db03c7f..a08cb9f 100644 --- a/src/core/writer.rs +++ b/src/core/writer.rs @@ -5,7 +5,7 @@ use std::path::PathBuf; fn config_dir() -> PathBuf { dirs::config_dir() .unwrap_or_else(|| PathBuf::from(".")) - .join("aigpt") + .join("ai.syui.gpt") } pub fn save_memory(content: &str) -> Result<()> {