mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-25 16:56:26 +02:00
20 lines
412 B
Python
20 lines
412 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
@Time : 2023/5/11 14:45
|
|
@Author : alexanderwu
|
|
@File : llm.py
|
|
"""
|
|
|
|
from metagpt.provider.anthropic_api import Claude2 as Claude
|
|
from metagpt.provider.openai_api import OpenAIGPTAPI as LLM
|
|
|
|
DEFAULT_LLM = LLM()
|
|
CLAUDE_LLM = Claude()
|
|
|
|
|
|
async def ai_func(prompt):
|
|
"""使用LLM进行QA
|
|
QA with LLMs
|
|
"""
|
|
return await DEFAULT_LLM.aask(prompt)
|