MetaGPT/metagpt/llm.py

17 lines
303 B
Python
Raw Normal View History

2023-06-30 17:10:48 +08:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@Time : 2023/5/11 14:45
@Author : alexanderwu
@File : llm.py
"""
from metagpt.provider.openai_api import OpenAIGPTAPI as LLM
DEFAULT_LLM = LLM()
async def ai_func(prompt):
"""使用LLM进行QA"""
return await DEFAULT_LLM.aask(prompt)