8 lines
263 B
Bash
8 lines
263 B
Bash
#!/bin/bash
|
|
curl -s --noproxy '*' http://127.0.0.1:11434/api/tags --max-time 5
|
|
echo ""
|
|
echo "---test gen---"
|
|
curl -s --noproxy '*' http://127.0.0.1:11434/api/generate \
|
|
-d '{"model":"qwen3:8b","prompt":"Bonjour","stream":false}' \
|
|
--max-time 30 | head -c 400
|