Update README and logging messages for model configuration clarity

This commit is contained in:
mtayfur
2025-10-28 03:03:11 +03:00
parent 551b0c571b
commit fe3c47f6e4
2 changed files with 3 additions and 3 deletions

View File

@@ -1665,7 +1665,7 @@ class Filter:
model_to_use = self.valves.memory_model or (body.get("model") if isinstance(body, dict) else None)
if self.valves.memory_model:
logger.info(f"🧠 Using the custom model for memory : {model_to_use}")
logger.info(f"🤖 Using the custom model for memory : {model_to_use}")
await self._set_pipeline_context(__event_emitter__, __user__, model_to_use, __request__)
@@ -1719,7 +1719,7 @@ class Filter:
model_to_use = self.valves.memory_model or (body.get("model") if isinstance(body, dict) else None)
if self.valves.memory_model:
logger.info(f"🧠 Using the custom model for memory : {model_to_use}")
logger.info(f"🤖 Using the custom model for memory : {model_to_use}")
await self._set_pipeline_context(__event_emitter__, __user__, model_to_use, __request__)