main
HuangHai 3 weeks ago
parent 9492ce2537
commit 3dace07cc4

@ -2,7 +2,7 @@
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="D:\anaconda3\envs\raganything" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="D:\anaconda3\envs\raganything" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="D:\anaconda3\envs\raganything" project-jdk-type="Python SDK" />
</project>

@ -1,3 +1,4 @@
# 官网
https://github.com/HKUDS/RAG-Anything
# 创建虚拟环境
@ -5,3 +6,6 @@ conda create -n raganything python=3.10
# 激活虚拟环境
conda activate raganything
https://github.com/HKUDS/VideoRAG

@ -0,0 +1,42 @@
Metadata-Version: 2.4
Name: raganything
Version: 1.2.0
Summary: RAGAnything: All-in-One RAG System
Home-page: https://github.com/HKUDS/RAG-Anything
Author: ZiruiGuo
Project-URL: Documentation, https://github.com/HKUDS/RAG-Anything
Project-URL: Source, https://github.com/HKUDS/RAG-Anything
Project-URL: Tracker, https://github.com/HKUDS/RAG-Anything/issues
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: huggingface_hub
Requires-Dist: lightrag-hku
Requires-Dist: mineru[core]
Provides-Extra: image
Requires-Dist: Pillow>=10.0.0; extra == "image"
Provides-Extra: text
Requires-Dist: reportlab>=4.0.0; extra == "text"
Provides-Extra: office
Provides-Extra: all
Requires-Dist: Pillow>=10.0.0; extra == "all"
Requires-Dist: reportlab>=4.0.0; extra == "all"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
A description of RAGAnything is currently unavailable.

@ -0,0 +1,25 @@
LICENSE
MANIFEST.in
README_zh.md
requirements.txt
setup.py
examples/image_format_test.py
examples/modalprocessors_example.py
examples/office_document_test.py
examples/raganything_example.py
examples/text_format_test.py
raganything/__init__.py
raganything/batch.py
raganything/config.py
raganything/mineru_parser.py
raganything/modalprocessors.py
raganything/processor.py
raganything/prompt.py
raganything/query.py
raganything/raganything.py
raganything/utils.py
raganything.egg-info/PKG-INFO
raganything.egg-info/SOURCES.txt
raganything.egg-info/dependency_links.txt
raganything.egg-info/requires.txt
raganything.egg-info/top_level.txt

@ -0,0 +1,15 @@
huggingface_hub
lightrag-hku
mineru[core]
[all]
Pillow>=10.0.0
reportlab>=4.0.0
[image]
Pillow>=10.0.0
[office]
[text]
reportlab>=4.0.0
Loading…
Cancel
Save