GLM-5 Turbo는 GLM-5 제품군의 지연 시간 최적화 버전입니다. 제품군의 강력한 도구 사용 및 이중 언어 능력을 유지하면서 첫 번째 토큰까지의 시간을 단축하여 실시간 어시스턴트 및 대화형 기능에 적합합니다.
OpenAI를 바로 대체할 수 있습니다. base_url과 model만 변경하세요.
# Python - pip install openai from openai import OpenAI client = OpenAI( base_url="https://meshtok.com/v1", api_key="sk-your-MeshTok-key", ) resp = client.chat.completions.create( model="bigmodel/glm-5-turbo", messages=[{"role":"user","content":"Hello!"}], ) print(resp.choices[0].message.content)
# cURL curl https://meshtok.com/v1/chat/completions \ -H "Authorization: Bearer sk-your-MeshTok-key" \ -H "Content-Type: application/json" \ -d '{"model":"bigmodel/glm-5-turbo","messages":[{"role":"user","content":"Hello!"}]}'
고려해볼 만한 다른 모델입니다.
Bilingual CN/EN embeddings from Zhipu AI.
Zhipu’s flagship with a 1M context window.
Balanced daily-driver from Zhipu.
General-purpose chat model.