feat: +metagpt llm

This commit is contained in:
莘权 马 2023-08-30 17:55:13 +08:00
parent a5ab5948c9
commit 9428c256ca
2 changed files with 50 additions and 0 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()