Procházet zdrojové kódy

Add back beartype (#3967)

### What problem does this PR solve?

Add back beartype

### Type of change

- [x] Refactoring
tags/v0.15.0
Zhichang Yu před 10 měsíci
rodič
revize
9a6d976252
Žádný účet není propojen s e-mailovou adresou tvůrce revize

+ 2
- 0
agent/__init__.py Zobrazit soubor

@@ -0,0 +1,2 @@
from beartype.claw import beartype_this_package
beartype_this_package()

+ 2
- 0
api/__init__.py Zobrazit soubor

@@ -0,0 +1,2 @@
from beartype.claw import beartype_this_package
beartype_this_package()

+ 2
- 0
deepdoc/__init__.py Zobrazit soubor

@@ -0,0 +1,2 @@
from beartype.claw import beartype_this_package
beartype_this_package()

+ 3
- 0
intergrations/chatgpt-on-wechat/plugins/__init__.py Zobrazit soubor

@@ -1,3 +1,6 @@
from beartype.claw import beartype_this_package
beartype_this_package()

from .ragflow_chat import RAGFlowChat

__all__ = [

+ 2
- 0
rag/__init__.py Zobrazit soubor

@@ -0,0 +1,2 @@
from beartype.claw import beartype_this_package
beartype_this_package()

+ 3
- 0
sdk/python/ragflow_sdk/__init__.py Zobrazit soubor

@@ -1,3 +1,6 @@
from beartype.claw import beartype_this_package
beartype_this_package()

import importlib.metadata

from .ragflow import RAGFlow

Načítá se…
Zrušit
Uložit