Files
zesdex/src/resources.rs
T

37 lines
1.0 KiB
Rust
Raw Normal View History

//! Compile-time embedded text resources: the system prompt, tool descriptions,
//! and the in-app help screen shown on Ctrl+H.
pub const SYSTEM_PROMPT: &str = include_str!("../src-misc/system-prompt.txt");
pub const SYSTEM_TOOLS: &str = include_str!("../src-misc/system-tools.txt");
pub const HELP_TEXT: &str = "
ZESDEX - Help
=============
Navigation:
Ctrl+Q Quit
Ctrl+H Help (this screen)
Ctrl+P Settings
Ctrl+A Toggle yolo arm
Ctrl+B Bash panel
Ctrl+S Session hub
Ctrl+T Task list
Ctrl+W Workflow view
Ctrl+K Key input mode
Esc Cancel / back
Tab Autocomplete
Up/Down History navigation
Input:
/help Show help
/clear Clear screen
/model Select AI model provider
/exit Exit application
/settings Open settings
/session Session management
Commands:
Any text is sent to the AI assistant as a prompt.
File paths use workspace-relative notation.
Use [0]/path for multi-workspace setups.
";