mobile version styled -ready for new version 2.0.1

This commit is contained in:
2025-10-22 18:37:08 +06:00
parent 344f763bb4
commit e37599d3ef
28 changed files with 4998 additions and 2224 deletions

10
shell-code/curl.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
execute_command() {
curl -s -X POST "http://localhost:8085/api/execute" \
-H "Content-Type: application/json" \
-d "{\"prompt\": \"$1\", \"verbose\": \"$2\"}" | \
jq -r '.'
}
execute_command "$1" "$2"