💡 ข้อมูลสำคัญ:
- API Endpoint:https://free.empero.org/v1(รองรับมาตรฐาน OpenAI)
- โมเดลที่เปิดให้ใช้:glm-5.3-flash(Context 1 ล้าน Tokens, สถาปัตยกรรม MoE 320B-A18B)
- การยืนยันตัวตน: ไม่ต้องลงทะเบียน ใส่ API Key เป็นfreeได้ทันที
- ⚠️ ข้อควรระวังเรื่องความเป็นส่วนตัว: ข้อมูล Prompt และผลลัพธ์จะถูกบันทึกแบบไม่ระบุตัวตนเพื่อนำไปเทรนโมเดล Open Source ห้ามส่งข้อมูลความลับเด็ดขาด!
🚀 ตัวอย่างการเรียกใช้งาน
cURL
bash
curl https://free.empero.org/v1/chat/completions \
-H "Authorization: Bearer free" \
-H "Content-Type: application/json" \
-d '{
"model": "glm-5.3-flash",
"messages": [{"role": "user", "content": "สวัสดี GLM-5.3-Flash"}]
}'Python
python
from openai import OpenAI
client = OpenAI(base_url="https://free.empero.org/v1", api_key="free")
res = client.chat.completions.create(
model="glm-5.3-flash",
messages=[{"role": "user", "content": "เขียนตัวอย่าง TypeScript quicksort"}]
)
print(res.choices[0].message.content)
ความคิดเห็นจากชุมชน
ความคิดเห็นผูกกับบัญชี GitHub ของคุณ — เข้าสู่ระบบเพื่อร่วมพูดคุย