morvinp/coding-assistant-api
0
Coding Assistant API
A simple coding assistant chatbot that helps with programming questions.
Features
- ๐ป Programming help and debugging
- ๐ Web interface and REST API
- โก Fast responses
- ๐ Free to use
API Usage
Making API Requests
import requests
response = requests.post(
"https://morvinp-coding-assistant-api.hf.space/api/predict",
json={"data": ["How do I create a function in Python?", []]}
)
result = response.json()
print(result["data"][-1])Response Format
The API returns responses in JSON format with the assistant's answer in the data array.
