mirror of
https://github.com/Direct-Dev-Ru/go-lcg.git
synced 2025-11-16 01:29:55 +00:00
10 lines
242 B
Bash
10 lines
242 B
Bash
#!/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" |