teacher-ai-api / tests /test_api_question.py
huyhoang04's picture
Upload 72 files
624109c verified
raw
history blame contribute delete
456 Bytes
import requests
course_id = "1"
lesson_id = "1"
question = "độ phức tạp của thuật toán là gì?"
url = "http://13.236.86.185/ask"
try:
response = requests.post(
url, json={"question": question, "course_id": course_id, "lesson_id": lesson_id}
)
response.raise_for_status()
result = response.json()
print(result["result"])
except requests.exceptions.RequestException as e:
print(f"error: {e}")