7 lines
210 B
Bash
Executable File
7 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
curl -s -X POST http://127.0.0.1:11434/api/generate \
|
|
-H "Content-Type: application/json" \
|
|
--max-time 40 \
|
|
-d '{"model":"weval-brain-v4","prompt":"Bonjour","stream":false}' \
|
|
| head -c 500
|