feat: add tooltip to Debug Mode toggle explaining its purpose
This commit is contained in:
parent
4151e7cd25
commit
1ac3db77a1
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ function DebugModeToggle({
|
||||||
if (debugMode === null) return null;
|
if (debugMode === null) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="debug-toggle">
|
<div className="debug-toggle" title="When enabled, pipeline runs capture full LLM prompts and responses for inspection in the event log">
|
||||||
<span className="debug-toggle__label">
|
<span className="debug-toggle__label">
|
||||||
Debug {debugMode ? "On" : "Off"}
|
Debug {debugMode ? "On" : "Off"}
|
||||||
</span>
|
</span>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue