GLM-5.2는 지푸 AI의 플래그십 모델로, 긴 작업 시대에 맞춰 설계되었습니다. 최대 128K 출력이 가능한 100만 토큰 컨텍스트 윈도우, 기본 도구 사용, 강력한 다국어 추론을 지원합니다. 장문 분석, 다단계 에이전트, 여러 파일에 걸친 코딩 작업에 탁월한 선택입니다.
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.2", 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.2","messages":[{"role":"user","content":"Hello!"}]}'
고려해볼 만한 다른 모델입니다.
Bilingual CN/EN embeddings from Zhipu AI.
Balanced daily-driver from Zhipu.
Fast GLM variant for low-latency apps.
General-purpose chat model.