Merge branch 'dev' into feature-aioboto3

This commit is contained in:
Stitch-z 2023-09-02 10:56:13 +08:00
commit 8a3c567112
4 changed files with 74 additions and 13 deletions

View file

@ -0,0 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Time : 2023/8/30
@Author : mashenquan
@File : test_metagpt_llm_api.py
"""
from metagpt.provider.metagpt_llm_api import MetaGPTLLMAPI
def test_metagpt():
llm = MetaGPTLLMAPI()
assert llm
if __name__ == "__main__":
test_metagpt()