소스 검색

Add back beartype (#3967)

### What problem does this PR solve?

Add back beartype

### Type of change

- [x] Refactoring
tags/v0.15.0
Zhichang Yu 10 달 전
부모
커밋
9a6d976252
No account linked to committer's email address
6개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      agent/__init__.py
  2. 2
    0
      api/__init__.py
  3. 2
    0
      deepdoc/__init__.py
  4. 3
    0
      intergrations/chatgpt-on-wechat/plugins/__init__.py
  5. 2
    0
      rag/__init__.py
  6. 3
    0
      sdk/python/ragflow_sdk/__init__.py

+ 2
- 0
agent/__init__.py 파일 보기

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

+ 2
- 0
api/__init__.py 파일 보기

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

+ 2
- 0
deepdoc/__init__.py 파일 보기

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

+ 3
- 0
intergrations/chatgpt-on-wechat/plugins/__init__.py 파일 보기

@@ -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 파일 보기

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

+ 3
- 0
sdk/python/ragflow_sdk/__init__.py 파일 보기

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

import importlib.metadata

from .ragflow import RAGFlow

Loading…
취소
저장