Thuta Learning
ရှာဖွေရန်
AdvancedWeb Developmentintermediate

Hugging Face Inference API

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

Hugging Face Inference API

Endpoint: POST https://api-inference.huggingface.co/models/<owner>/<model>

curl

text
curl -X POST   -H "Authorization: Bearer $HF_TOKEN"   -H "Content-Type: application/json"   https://api-inference.huggingface.co/models/mistralai/Mixtral-8x7B-Instruct-v0.1   -d '{"inputs":"Explain REST in Burmese"}'

🎯 Result[ { "generated_text": "REST ဆိုတာ..." } ]

Hugging Face Inference API | Thuta Learning