项目文件夹

文件
T
2023-09-10 14:18:16 -07:00

39 行
1.3 KiB
Python

import importlib
import os
import pkg_resources
import pluggy
import sys
from . import hookspecs
DEFAULT_PLUGINS = ("llm.default_plugins.openai_models",)
pm = pluggy.PluginManager("llm")
pm.add_hookspecs(hookspecs)
LLM_LOAD_PLUGINS = os.environ.get("LLM_LOAD_PLUGINS", None)
if not hasattr(sys, "_called_from_test") and LLM_LOAD_PLUGINS is None:
# Only load plugins if not running tests
pm.load_setuptools_entrypoints("llm")
# Load any plugins specified in LLM_LOAD_PLUGINS")
if LLM_LOAD_PLUGINS is not None:
for package_name in [name for name in LLM_LOAD_PLUGINS.split(",") if name.strip()]:
try:
distribution = pkg_resources.get_distribution(package_name)
entry_map = distribution.get_entry_map()
if "llm" in entry_map:
for plugin_name, entry_point in entry_map["llm"].items():
mod = entry_point.load()
pm.register(mod, name=entry_point.name)
# Ensure name can be found in plugin_to_distinfo later:
pm._plugin_distinfo.append((mod, distribution)) # type: ignore
except pkg_resources.DistributionNotFound:
sys.stderr.write("Plugin {} could not be found\n".format(package_name))
for plugin in DEFAULT_PLUGINS:
mod = importlib.import_module(plugin)
pm.register(mod, plugin)