File size: 261 Bytes
11276e2 |
1 2 3 4 5 6 7 8 9 |
import requests
def test_api_url():
# api_url = "http://127.0.0.1:8080/recommend?prompt="
# response = requests.get(api_url)
# assert response.status_code == 200
# assert response.headers["Content-Type"] == "application/json"
assert True
|