sirchmunk 0.0.1__py3-none-any.whl → 0.0.1.post1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sirchmunk/version.py +1 -1
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/METADATA +73 -6
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/RECORD +7 -7
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/WHEEL +0 -0
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/entry_points.txt +0 -0
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/licenses/LICENSE +0 -0
- {sirchmunk-0.0.1.dist-info → sirchmunk-0.0.1.post1.dist-info}/top_level.txt +0 -0
sirchmunk/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.0.1"
|
|
1
|
+
__version__ = "0.0.1.post1"
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sirchmunk
|
|
3
|
-
Version: 0.0.1
|
|
3
|
+
Version: 0.0.1.post1
|
|
4
4
|
Summary: Sirchmunk: From raw data to self-evolving real-time intelligence.
|
|
5
|
-
Home-page: https://github.com/modelscope/sirchmunk
|
|
6
5
|
Author: ModelScope Team
|
|
7
6
|
Author-email: contact@modelscope.cn
|
|
8
7
|
License: Apache License 2.0
|
|
9
8
|
Project-URL: Homepage, https://github.com/modelscope/sirchmunk
|
|
10
|
-
Keywords: LLM,Agentic
|
|
9
|
+
Keywords: LLM,Agentic Search,Embedding-Free,RAG,Indexless,Self-evolving,Real-time Intelligence,Multi-modal
|
|
11
10
|
Classifier: Development Status :: 4 - Beta
|
|
12
11
|
Classifier: Operating System :: OS Independent
|
|
13
12
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,13 +19,74 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
20
19
|
Requires-Python: >=3.10
|
|
21
20
|
Description-Content-Type: text/markdown
|
|
22
21
|
License-File: LICENSE
|
|
22
|
+
Requires-Dist: loguru
|
|
23
|
+
Requires-Dist: fastapi
|
|
24
|
+
Requires-Dist: openai
|
|
25
|
+
Requires-Dist: genson
|
|
26
|
+
Requires-Dist: pillow
|
|
27
|
+
Requires-Dist: pypdf
|
|
28
|
+
Requires-Dist: pandas
|
|
29
|
+
Requires-Dist: parquet
|
|
30
|
+
Requires-Dist: numpy
|
|
31
|
+
Requires-Dist: msgpack
|
|
32
|
+
Requires-Dist: sentencepiece
|
|
33
|
+
Requires-Dist: tqdm
|
|
34
|
+
Requires-Dist: rapidfuzz
|
|
35
|
+
Requires-Dist: duckdb
|
|
36
|
+
Requires-Dist: kreuzberg>=4.0.0rc1
|
|
37
|
+
Provides-Extra: web
|
|
38
|
+
Requires-Dist: fastapi>=0.100.0; extra == "web"
|
|
39
|
+
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "web"
|
|
40
|
+
Requires-Dist: websockets>=12.0; extra == "web"
|
|
41
|
+
Requires-Dist: python-multipart>=0.0.6; extra == "web"
|
|
42
|
+
Requires-Dist: pydantic>=2.0.0; extra == "web"
|
|
43
|
+
Requires-Dist: requests>=2.32.2; extra == "web"
|
|
44
|
+
Requires-Dist: aiohttp>=3.9.4; extra == "web"
|
|
45
|
+
Requires-Dist: httpx>=0.27.0; extra == "web"
|
|
46
|
+
Requires-Dist: urllib3>=2.2.1; extra == "web"
|
|
47
|
+
Requires-Dist: pydantic>=2.0; extra == "web"
|
|
48
|
+
Requires-Dist: python-dotenv>=1.0.0; extra == "web"
|
|
49
|
+
Requires-Dist: psutil; extra == "web"
|
|
23
50
|
Provides-Extra: docs
|
|
51
|
+
Requires-Dist: docutils>=0.16.0; extra == "docs"
|
|
52
|
+
Requires-Dist: myst_parser; extra == "docs"
|
|
53
|
+
Requires-Dist: recommonmark; extra == "docs"
|
|
54
|
+
Requires-Dist: sphinx>=5.3.0; extra == "docs"
|
|
55
|
+
Requires-Dist: sphinx-book-theme; extra == "docs"
|
|
56
|
+
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
57
|
+
Requires-Dist: sphinx-design; extra == "docs"
|
|
58
|
+
Requires-Dist: sphinx_markdown_tables; extra == "docs"
|
|
59
|
+
Requires-Dist: sphinxawesome-theme; extra == "docs"
|
|
60
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "docs"
|
|
24
61
|
Provides-Extra: tests
|
|
25
|
-
|
|
62
|
+
Requires-Dist: pytest; extra == "tests"
|
|
63
|
+
Requires-Dist: pytest-asyncio; extra == "tests"
|
|
26
64
|
Provides-Extra: all
|
|
27
|
-
|
|
65
|
+
Requires-Dist: fastapi>=0.100.0; extra == "all"
|
|
66
|
+
Requires-Dist: uvicorn[standard]>=0.24.0; extra == "all"
|
|
67
|
+
Requires-Dist: websockets>=12.0; extra == "all"
|
|
68
|
+
Requires-Dist: python-multipart>=0.0.6; extra == "all"
|
|
69
|
+
Requires-Dist: pydantic>=2.0.0; extra == "all"
|
|
70
|
+
Requires-Dist: requests>=2.32.2; extra == "all"
|
|
71
|
+
Requires-Dist: aiohttp>=3.9.4; extra == "all"
|
|
72
|
+
Requires-Dist: httpx>=0.27.0; extra == "all"
|
|
73
|
+
Requires-Dist: urllib3>=2.2.1; extra == "all"
|
|
74
|
+
Requires-Dist: pydantic>=2.0; extra == "all"
|
|
75
|
+
Requires-Dist: python-dotenv>=1.0.0; extra == "all"
|
|
76
|
+
Requires-Dist: psutil; extra == "all"
|
|
77
|
+
Requires-Dist: docutils>=0.16.0; extra == "all"
|
|
78
|
+
Requires-Dist: myst_parser; extra == "all"
|
|
79
|
+
Requires-Dist: recommonmark; extra == "all"
|
|
80
|
+
Requires-Dist: sphinx>=5.3.0; extra == "all"
|
|
81
|
+
Requires-Dist: sphinx-book-theme; extra == "all"
|
|
82
|
+
Requires-Dist: sphinx-copybutton; extra == "all"
|
|
83
|
+
Requires-Dist: sphinx-design; extra == "all"
|
|
84
|
+
Requires-Dist: sphinx_markdown_tables; extra == "all"
|
|
85
|
+
Requires-Dist: sphinxawesome-theme; extra == "all"
|
|
86
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "all"
|
|
87
|
+
Requires-Dist: pytest; extra == "all"
|
|
88
|
+
Requires-Dist: pytest-asyncio; extra == "all"
|
|
28
89
|
Dynamic: license-file
|
|
29
|
-
Dynamic: provides-extra
|
|
30
90
|
|
|
31
91
|
<div align="center">
|
|
32
92
|
|
|
@@ -166,6 +226,13 @@ It serves as a unified intelligent hub for AI agents, delivering deep insights a
|
|
|
166
226
|
---
|
|
167
227
|
|
|
168
228
|
|
|
229
|
+
## 🎉 News
|
|
230
|
+
|
|
231
|
+
* 🎉🎉 Jan 22, 2026: Introducing **Sirchmunk**: Initial Release v0.0.1 Now Available!
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
169
236
|
## 🚀 Quick Start
|
|
170
237
|
|
|
171
238
|
### Prerequisites
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
sirchmunk/__init__.py,sha256=5sdppELUcjnTofJtwZ2ACuUscmLYIPhCwj-G-MMSl-M,184
|
|
2
2
|
sirchmunk/base.py,sha256=qVQ63QfEWhEvOJl3OxQvC2rOUNTZCD5weXRn-1vvEkU,439
|
|
3
3
|
sirchmunk/search.py,sha256=NROpV39oklDT4wusE8EnkQPABq9LiAa0kQrtyR6viHQ,18210
|
|
4
|
-
sirchmunk/version.py,sha256=
|
|
4
|
+
sirchmunk/version.py,sha256=kBLMG2WZUGcfsN5po-4OyjkyndbcTcGgae_91l8-sFE,28
|
|
5
5
|
sirchmunk/insight/__init__.py,sha256=7sQeT0fSg5-b9jrwthA9_fSCR1Q5qSvm33L9l7kHjLY,144
|
|
6
6
|
sirchmunk/insight/text_insights.py,sha256=BwFqmDNG8FmOz4Lv3qO1Mz2xRv_LVg4b3wj6YUhVLVE,9075
|
|
7
7
|
sirchmunk/learnings/__init__.py,sha256=310L84MdAIw4THnzf5YsLiUhW_oaxgJHHcZZeMso3jY,61
|
|
@@ -37,9 +37,9 @@ sirchmunk/utils/install_rga.py,sha256=i7sWYi6u2A32dc0mq5LB_OtqcMWqKezSz6WILWaK1O
|
|
|
37
37
|
sirchmunk/utils/log_utils.py,sha256=HujosgEXV9fpSVd6JjRh7KEQuskhrcpC4Kit6aIpnW0,14195
|
|
38
38
|
sirchmunk/utils/tokenizer_util.py,sha256=JIg4FylB6o8AIe71q8Uv83PKmPF1funX3ffhb9cPX3c,1624
|
|
39
39
|
sirchmunk/utils/utils.py,sha256=qnwZ8R9xLqsMooW0IdcWoPKto7q4AQ49-SOR33rCy1g,3394
|
|
40
|
-
sirchmunk-0.0.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
-
sirchmunk-0.0.1.dist-info/METADATA,sha256=
|
|
42
|
-
sirchmunk-0.0.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
43
|
-
sirchmunk-0.0.1.dist-info/entry_points.txt,sha256=lpnP-Ll2CUY0P1wYm6kutcBMrxwG67astmgY-vVhF14,56
|
|
44
|
-
sirchmunk-0.0.1.dist-info/top_level.txt,sha256=8MiQvqjFkqiGJ7m4xqxsfxwxFHtH2mIXlrkV9PfX-aM,10
|
|
45
|
-
sirchmunk-0.0.1.dist-info/RECORD,,
|
|
40
|
+
sirchmunk-0.0.1.post1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
sirchmunk-0.0.1.post1.dist-info/METADATA,sha256=H4zSxLJBlsFVfMPT1HscJvNkCfR0AmfNEA0m0XfQsoQ,18408
|
|
42
|
+
sirchmunk-0.0.1.post1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
43
|
+
sirchmunk-0.0.1.post1.dist-info/entry_points.txt,sha256=lpnP-Ll2CUY0P1wYm6kutcBMrxwG67astmgY-vVhF14,56
|
|
44
|
+
sirchmunk-0.0.1.post1.dist-info/top_level.txt,sha256=8MiQvqjFkqiGJ7m4xqxsfxwxFHtH2mIXlrkV9PfX-aM,10
|
|
45
|
+
sirchmunk-0.0.1.post1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|