zhipu.py 318 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. from .__load__ import *
  3. from langchain.chat_models import ChatOpenAI
  4. class Zhipu(object):
  5. def load(self, model = 'glm-4', streaming = True):
  6. return ZhipuAI(
  7. model=model,
  8. api_key=Demeter.config['zhipu']['api_key'],
  9. streaming=streaming,
  10. )