slimming before fastapi refactor

This commit is contained in:
2026-01-02 22:10:13 -07:00
parent 06b6340731
commit b96e0e0008
9 changed files with 231 additions and 557 deletions

10
run.sh
View File

@@ -35,7 +35,6 @@ fi
# Parse command line arguments
INTERACTIVE=false
SIMPLE=false
STATS=false
POOL_STATS=false
FILL_POOL=false
@@ -47,10 +46,6 @@ while [[ $# -gt 0 ]]; do
INTERACTIVE=true
shift
;;
-s | --simple)
SIMPLE=true
shift
;;
--stats)
STATS=true
shift
@@ -80,7 +75,6 @@ if [ "$HELP" = true ]; then
echo ""
echo "Options:"
echo " -i, --interactive Run in interactive mode (with rich interface)"
echo " -s, --simple Run simple version (no rich dependency)"
echo " --stats Show prompt history statistics"
echo " --pool-stats Show prompt pool statistics"
echo " --fill-pool Fill prompt pool using AI (makes API call)"
@@ -89,7 +83,6 @@ if [ "$HELP" = true ]; then
echo "Examples:"
echo " ./run.sh # Draw prompts from pool (default)"
echo " ./run.sh -i # Interactive mode"
echo " ./run.sh -s # Simple version"
echo " ./run.sh --stats # Show history statistics"
echo " ./run.sh --pool-stats # Show pool statistics"
echo " ./run.sh --fill-pool # Fill prompt pool using AI"
@@ -108,9 +101,6 @@ elif [ "$FILL_POOL" = true ]; then
elif [ "$INTERACTIVE" = true ]; then
echo "🎮 Starting interactive mode..."
python3 generate_prompts.py --interactive
elif [ "$SIMPLE" = true ]; then
echo "⚡ Running simple version..."
python3 simple_generate.py
else
echo "✨ Drawing prompts from pool..."
python3 generate_prompts.py