ai-hello-world / test_api.sh
SubZtep's picture
Initial AI API
9e8bc15
raw
history blame contribute delete
336 Bytes
#!/usr/bin/env bash
curl -X POST http://127.0.0.1:8000/chat \
-H "Content-Type: application/json" \
-d '{"session_id":"demo","message":"What is JavaScript?"}'
echo "\n\nROUND 2.\n\n"
curl -X POST http://127.0.0.1:8000/chat \
-H "Content-Type: application/json" \
-d '{"session_id":"demo","message":"And what are closures?"}'