/ scripts / demo_enhanced.sh
demo_enhanced.sh
 1  #!/bin/bash
 2  
 3  echo "🔥 Kamaji Enhanced Features Demo"
 4  echo "================================="
 5  echo
 6  
 7  echo "1. 📊 Calculator Tool"
 8  echo "Command: kamaji calc \"sqrt(144) + 10\""
 9  ./target/release/kamaji calc "sqrt(144) + 10"
10  echo
11  
12  echo "2. 📊 Advanced Math"
13  echo "Command: kamaji calc \"sin(pi/2) + cos(0)\""
14  ./target/release/kamaji calc "sin(pi/2) + cos(0)"
15  echo
16  
17  echo "3. 📚 Document Indexing"
18  echo "Command: kamaji index README.md Cargo.toml"
19  ./target/release/kamaji index README.md Cargo.toml
20  echo
21  
22  echo "4. 🔍 Document Search"
23  echo "Command: kamaji search \"version\""
24  ./target/release/kamaji search "version"
25  echo
26  
27  echo "5. 🔥 Agent Processing"
28  echo "Command: kamaji agent \"What is 2 to the power of 8?\""
29  ./target/release/kamaji agent "What is 2 to the power of 8?"
30  echo
31  
32  echo "6. 📝 String Operations via Agent"
33  echo "Command: kamaji agent \"What is the length of the string 'Hello World'?\""
34  ./target/release/kamaji agent "What is the length of the string 'Hello World'?"
35  echo
36  
37  echo "7. 💻 System Operations"
38  echo "Command: kamaji agent \"What is the current directory?\""
39  ./target/release/kamaji agent "What is the current directory?"
40  echo
41  
42  echo "🎉 Demo Complete!"
43  echo "Try 'kamaji enhanced' for the full TUI experience!"
44  echo "Or 'kamaji interactive' for conversational agent mode!"