mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-28 18:36:22 +02:00
20 lines
643 B
Python
20 lines
643 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
@Time : 2023/5/11 14:45
|
|
@Author : alexanderwu
|
|
@File : llm.py
|
|
"""
|
|
|
|
from metagpt.config import CONFIG
|
|
from metagpt.provider.base_gpt_api import BaseGPTAPI
|
|
from metagpt.provider.human_provider import HumanProvider
|
|
from metagpt.provider.llm_provider_registry import LLM_REGISTRY
|
|
|
|
_ = HumanProvider() # Avoid pre-commit error
|
|
|
|
|
|
def LLM() -> BaseGPTAPI:
|
|
"""initialize different LLM instance according to the key field existence"""
|
|
# TODO a little trick, can use registry to initialize LLM instance further
|
|
return LLM_REGISTRY.get_provider(CONFIG.get_default_llm_provider_enum())
|