ali.py 345 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. from .__load__ import *
  3. from langchain_community.chat_models.tongyi import ChatTongyi
  4. class Ali(object):
  5. def load(self, model = 'qwen-plus-latest', streaming = True):
  6. return ChatTongyi(
  7. model=model,
  8. api_key=Demeter.config['ali']['api_key'],
  9. streaming=streaming,
  10. )