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