sirchmunk 0.0.1__tar.gz → 0.0.1.post1__tar.gz

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.
Files changed (58) hide show
  1. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/PKG-INFO +34 -44
  2. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/README.md +7 -0
  3. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/pyproject.toml +14 -29
  4. sirchmunk-0.0.1.post1/requirements/core.txt +15 -0
  5. sirchmunk-0.0.1.post1/requirements/docs.txt +10 -0
  6. sirchmunk-0.0.1.post1/requirements/tests.txt +2 -0
  7. sirchmunk-0.0.1.post1/requirements/web.txt +19 -0
  8. sirchmunk-0.0.1.post1/setup.py +5 -0
  9. sirchmunk-0.0.1.post1/src/sirchmunk/version.py +1 -0
  10. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/PKG-INFO +34 -44
  11. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/SOURCES.txt +4 -1
  12. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/requires.txt +13 -26
  13. sirchmunk-0.0.1/setup.py +0 -179
  14. sirchmunk-0.0.1/src/sirchmunk/version.py +0 -1
  15. sirchmunk-0.0.1/src/sirchmunk.egg-info/not-zip-safe +0 -1
  16. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/LICENSE +0 -0
  17. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/setup.cfg +0 -0
  18. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/__init__.py +0 -0
  19. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/base.py +0 -0
  20. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/insight/__init__.py +0 -0
  21. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/insight/text_insights.py +0 -0
  22. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/learnings/__init__.py +0 -0
  23. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/learnings/evidence_processor.py +0 -0
  24. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/learnings/knowledge_base.py +0 -0
  25. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/llm/__init__.py +0 -0
  26. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/llm/openai_chat.py +0 -0
  27. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/llm/prompts.py +0 -0
  28. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/retrieve/__init__.py +0 -0
  29. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/retrieve/base.py +0 -0
  30. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/retrieve/text_retriever.py +0 -0
  31. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/scan/__init__.py +0 -0
  32. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/scan/base.py +0 -0
  33. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/scan/file_scanner.py +0 -0
  34. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/scan/web_scanner.py +0 -0
  35. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/scheduler/__init__.py +0 -0
  36. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/__init__.py +0 -0
  37. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/cognition.py +0 -0
  38. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/context.py +0 -0
  39. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/knowledge.py +0 -0
  40. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/metadata.py +0 -0
  41. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/request.py +0 -0
  42. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/response.py +0 -0
  43. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/schema/snapshot.py +0 -0
  44. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/search.py +0 -0
  45. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/storage/__init__.py +0 -0
  46. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/storage/duckdb.py +0 -0
  47. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/storage/knowledge_manager.py +0 -0
  48. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/__init__.py +0 -0
  49. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/constants.py +0 -0
  50. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/deps.py +0 -0
  51. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/file_utils.py +0 -0
  52. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/install_rga.py +0 -0
  53. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/log_utils.py +0 -0
  54. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/tokenizer_util.py +0 -0
  55. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk/utils/utils.py +0 -0
  56. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/dependency_links.txt +0 -0
  57. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/entry_points.txt +0 -0
  58. {sirchmunk-0.0.1 → sirchmunk-0.0.1.post1}/src/sirchmunk.egg-info/top_level.txt +0 -0
@@ -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,Search,RAG,Indexless,Self-evolving,Real-time Intelligence,Multi-modal
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
@@ -35,6 +34,19 @@ Requires-Dist: tqdm
35
34
  Requires-Dist: rapidfuzz
36
35
  Requires-Dist: duckdb
37
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"
38
50
  Provides-Extra: docs
39
51
  Requires-Dist: docutils>=0.16.0; extra == "docs"
40
52
  Requires-Dist: myst_parser; extra == "docs"
@@ -49,34 +61,19 @@ Requires-Dist: sphinxcontrib-mermaid; extra == "docs"
49
61
  Provides-Extra: tests
50
62
  Requires-Dist: pytest; extra == "tests"
51
63
  Requires-Dist: pytest-asyncio; extra == "tests"
52
- Provides-Extra: web
53
- Requires-Dist: fastapi>=0.100.0; extra == "web"
54
- Requires-Dist: uvicorn[standard]>=0.24.0; extra == "web"
55
- Requires-Dist: websockets>=12.0; extra == "web"
56
- Requires-Dist: python-multipart>=0.0.6; extra == "web"
57
- Requires-Dist: pydantic>=2.0.0; extra == "web"
58
- Requires-Dist: requests>=2.32.2; extra == "web"
59
- Requires-Dist: aiohttp>=3.9.4; extra == "web"
60
- Requires-Dist: urllib3>=2.2.1; extra == "web"
61
- Requires-Dist: pydantic>=2.0; extra == "web"
62
- Requires-Dist: python-dotenv>=1.0.0; extra == "web"
63
- Requires-Dist: psutil; extra == "web"
64
64
  Provides-Extra: all
65
- Requires-Dist: loguru; extra == "all"
66
- Requires-Dist: fastapi; extra == "all"
67
- Requires-Dist: openai; extra == "all"
68
- Requires-Dist: genson; extra == "all"
69
- Requires-Dist: pillow; extra == "all"
70
- Requires-Dist: pypdf; extra == "all"
71
- Requires-Dist: pandas; extra == "all"
72
- Requires-Dist: parquet; extra == "all"
73
- Requires-Dist: numpy; extra == "all"
74
- Requires-Dist: msgpack; extra == "all"
75
- Requires-Dist: sentencepiece; extra == "all"
76
- Requires-Dist: tqdm; extra == "all"
77
- Requires-Dist: rapidfuzz; extra == "all"
78
- Requires-Dist: duckdb; extra == "all"
79
- Requires-Dist: kreuzberg>=4.0.0rc1; extra == "all"
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"
80
77
  Requires-Dist: docutils>=0.16.0; extra == "all"
81
78
  Requires-Dist: myst_parser; extra == "all"
82
79
  Requires-Dist: recommonmark; extra == "all"
@@ -89,21 +86,7 @@ Requires-Dist: sphinxawesome-theme; extra == "all"
89
86
  Requires-Dist: sphinxcontrib-mermaid; extra == "all"
90
87
  Requires-Dist: pytest; extra == "all"
91
88
  Requires-Dist: pytest-asyncio; extra == "all"
92
- Requires-Dist: fastapi>=0.100.0; extra == "all"
93
- Requires-Dist: uvicorn[standard]>=0.24.0; extra == "all"
94
- Requires-Dist: websockets>=12.0; extra == "all"
95
- Requires-Dist: python-multipart>=0.0.6; extra == "all"
96
- Requires-Dist: pydantic>=2.0.0; extra == "all"
97
- Requires-Dist: requests>=2.32.2; extra == "all"
98
- Requires-Dist: aiohttp>=3.9.4; extra == "all"
99
- Requires-Dist: urllib3>=2.2.1; extra == "all"
100
- Requires-Dist: pydantic>=2.0; extra == "all"
101
- Requires-Dist: python-dotenv>=1.0.0; extra == "all"
102
- Requires-Dist: psutil; extra == "all"
103
- Dynamic: home-page
104
89
  Dynamic: license-file
105
- Dynamic: provides-extra
106
- Dynamic: requires-dist
107
90
 
108
91
  <div align="center">
109
92
 
@@ -243,6 +226,13 @@ It serves as a unified intelligent hub for AI agents, delivering deep insights a
243
226
  ---
244
227
 
245
228
 
229
+ ## 🎉 News
230
+
231
+ * 🎉🎉 Jan 22, 2026: Introducing **Sirchmunk**: Initial Release v0.0.1 Now Available!
232
+
233
+
234
+ ---
235
+
246
236
  ## 🚀 Quick Start
247
237
 
248
238
  ### Prerequisites
@@ -136,6 +136,13 @@ It serves as a unified intelligent hub for AI agents, delivering deep insights a
136
136
  ---
137
137
 
138
138
 
139
+ ## 🎉 News
140
+
141
+ * 🎉🎉 Jan 22, 2026: Introducing **Sirchmunk**: Initial Release v0.0.1 Now Available!
142
+
143
+
144
+ ---
145
+
139
146
  ## 🚀 Quick Start
140
147
 
141
148
  ### Prerequisites
@@ -8,7 +8,7 @@ authors = [
8
8
  {name = "ModelScope Team"},
9
9
  {email = "contact@modelscope.cn"}
10
10
  ]
11
- keywords = ["LLM", "Agentic", "Search", "RAG", "Indexless", "Self-evolving", "Real-time Intelligence", "Multi-modal"]
11
+ keywords = ["LLM", "Agentic Search", "Embedding-Free", "RAG", "Indexless", "Self-evolving", "Real-time Intelligence", "Multi-modal"]
12
12
  requires-python = ">=3.10"
13
13
  classifiers = [
14
14
  "Development Status :: 4 - Beta",
@@ -35,35 +35,20 @@ build-backend = "setuptools.build_meta"
35
35
  [tool.setuptools]
36
36
  include-package-data = true
37
37
 
38
- [tool.setuptools.dynamic]
39
- version = {attr = "sirchmunk.version.__version__"}
40
-
41
38
  [tool.setuptools.packages.find]
42
39
  where = ["src"]
43
40
  include = ["sirchmunk*"]
44
41
 
45
- [tool.black]
46
- line-length = 88
47
- target-version = ["py313"]
48
- include = "\\.pyi?$"
49
- exclude = '''
50
- /(
51
- \.eggs
52
- | \.git
53
- | \.hg
54
- | \.mypy_cache
55
- | \.tox
56
- | \.venv
57
- | _build
58
- | buck-out
59
- | build
60
- | dist
61
- | src/sirchmunk/.*/__pycache__
62
- )/
63
- '''
64
-
65
- [tool.ruff]
66
- select = ["E", "W", "F", "I"]
67
- ignore = ["E501"]
68
- target-version = "py313"
69
- line-length = 88
42
+ [tool.setuptools.dynamic]
43
+ version = {attr = "sirchmunk.version.__version__"}
44
+ dependencies = {file = ["requirements/core.txt"]}
45
+
46
+ [tool.setuptools.dynamic.optional-dependencies]
47
+ web = {file = ["requirements/web.txt"]}
48
+ docs = {file = ["requirements/docs.txt"]}
49
+ tests = {file = ["requirements/tests.txt"]}
50
+ all = {file = [
51
+ "requirements/web.txt",
52
+ "requirements/docs.txt",
53
+ "requirements/tests.txt",
54
+ ]}
@@ -0,0 +1,15 @@
1
+ loguru
2
+ fastapi
3
+ openai
4
+ genson
5
+ pillow
6
+ pypdf
7
+ pandas
8
+ parquet
9
+ numpy
10
+ msgpack
11
+ sentencepiece
12
+ tqdm
13
+ rapidfuzz
14
+ duckdb
15
+ kreuzberg>=4.0.0rc1
@@ -0,0 +1,10 @@
1
+ docutils>=0.16.0
2
+ myst_parser
3
+ recommonmark
4
+ sphinx>=5.3.0
5
+ sphinx-book-theme
6
+ sphinx-copybutton
7
+ sphinx-design
8
+ sphinx_markdown_tables
9
+ sphinxawesome-theme
10
+ sphinxcontrib-mermaid
@@ -0,0 +1,2 @@
1
+ pytest
2
+ pytest-asyncio
@@ -0,0 +1,19 @@
1
+ # --- Web Framework & Server ---
2
+ fastapi>=0.100.0
3
+ uvicorn[standard]>=0.24.0
4
+ websockets>=12.0
5
+ python-multipart>=0.0.6
6
+ pydantic>=2.0.0
7
+
8
+ # --- HTTP Clients ---
9
+ requests>=2.32.2
10
+ aiohttp>=3.9.4
11
+ httpx>=0.27.0
12
+ urllib3>=2.2.1
13
+
14
+ # --- Data Validation & Environment ---
15
+ pydantic>=2.0
16
+ python-dotenv>=1.0.0
17
+
18
+ # --- System & Utilities ---
19
+ psutil
@@ -0,0 +1,5 @@
1
+ # Copyright (c) ModelScope Contributors. All rights reserved.
2
+ # -*- coding: utf-8 -*-
3
+ from setuptools import setup
4
+
5
+ setup()
@@ -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,Search,RAG,Indexless,Self-evolving,Real-time Intelligence,Multi-modal
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
@@ -35,6 +34,19 @@ Requires-Dist: tqdm
35
34
  Requires-Dist: rapidfuzz
36
35
  Requires-Dist: duckdb
37
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"
38
50
  Provides-Extra: docs
39
51
  Requires-Dist: docutils>=0.16.0; extra == "docs"
40
52
  Requires-Dist: myst_parser; extra == "docs"
@@ -49,34 +61,19 @@ Requires-Dist: sphinxcontrib-mermaid; extra == "docs"
49
61
  Provides-Extra: tests
50
62
  Requires-Dist: pytest; extra == "tests"
51
63
  Requires-Dist: pytest-asyncio; extra == "tests"
52
- Provides-Extra: web
53
- Requires-Dist: fastapi>=0.100.0; extra == "web"
54
- Requires-Dist: uvicorn[standard]>=0.24.0; extra == "web"
55
- Requires-Dist: websockets>=12.0; extra == "web"
56
- Requires-Dist: python-multipart>=0.0.6; extra == "web"
57
- Requires-Dist: pydantic>=2.0.0; extra == "web"
58
- Requires-Dist: requests>=2.32.2; extra == "web"
59
- Requires-Dist: aiohttp>=3.9.4; extra == "web"
60
- Requires-Dist: urllib3>=2.2.1; extra == "web"
61
- Requires-Dist: pydantic>=2.0; extra == "web"
62
- Requires-Dist: python-dotenv>=1.0.0; extra == "web"
63
- Requires-Dist: psutil; extra == "web"
64
64
  Provides-Extra: all
65
- Requires-Dist: loguru; extra == "all"
66
- Requires-Dist: fastapi; extra == "all"
67
- Requires-Dist: openai; extra == "all"
68
- Requires-Dist: genson; extra == "all"
69
- Requires-Dist: pillow; extra == "all"
70
- Requires-Dist: pypdf; extra == "all"
71
- Requires-Dist: pandas; extra == "all"
72
- Requires-Dist: parquet; extra == "all"
73
- Requires-Dist: numpy; extra == "all"
74
- Requires-Dist: msgpack; extra == "all"
75
- Requires-Dist: sentencepiece; extra == "all"
76
- Requires-Dist: tqdm; extra == "all"
77
- Requires-Dist: rapidfuzz; extra == "all"
78
- Requires-Dist: duckdb; extra == "all"
79
- Requires-Dist: kreuzberg>=4.0.0rc1; extra == "all"
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"
80
77
  Requires-Dist: docutils>=0.16.0; extra == "all"
81
78
  Requires-Dist: myst_parser; extra == "all"
82
79
  Requires-Dist: recommonmark; extra == "all"
@@ -89,21 +86,7 @@ Requires-Dist: sphinxawesome-theme; extra == "all"
89
86
  Requires-Dist: sphinxcontrib-mermaid; extra == "all"
90
87
  Requires-Dist: pytest; extra == "all"
91
88
  Requires-Dist: pytest-asyncio; extra == "all"
92
- Requires-Dist: fastapi>=0.100.0; extra == "all"
93
- Requires-Dist: uvicorn[standard]>=0.24.0; extra == "all"
94
- Requires-Dist: websockets>=12.0; extra == "all"
95
- Requires-Dist: python-multipart>=0.0.6; extra == "all"
96
- Requires-Dist: pydantic>=2.0.0; extra == "all"
97
- Requires-Dist: requests>=2.32.2; extra == "all"
98
- Requires-Dist: aiohttp>=3.9.4; extra == "all"
99
- Requires-Dist: urllib3>=2.2.1; extra == "all"
100
- Requires-Dist: pydantic>=2.0; extra == "all"
101
- Requires-Dist: python-dotenv>=1.0.0; extra == "all"
102
- Requires-Dist: psutil; extra == "all"
103
- Dynamic: home-page
104
89
  Dynamic: license-file
105
- Dynamic: provides-extra
106
- Dynamic: requires-dist
107
90
 
108
91
  <div align="center">
109
92
 
@@ -243,6 +226,13 @@ It serves as a unified intelligent hub for AI agents, delivering deep insights a
243
226
  ---
244
227
 
245
228
 
229
+ ## 🎉 News
230
+
231
+ * 🎉🎉 Jan 22, 2026: Introducing **Sirchmunk**: Initial Release v0.0.1 Now Available!
232
+
233
+
234
+ ---
235
+
246
236
  ## 🚀 Quick Start
247
237
 
248
238
  ### Prerequisites
@@ -2,6 +2,10 @@ LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
4
  setup.py
5
+ requirements/core.txt
6
+ requirements/docs.txt
7
+ requirements/tests.txt
8
+ requirements/web.txt
5
9
  src/sirchmunk/__init__.py
6
10
  src/sirchmunk/base.py
7
11
  src/sirchmunk/search.py
@@ -10,7 +14,6 @@ src/sirchmunk.egg-info/PKG-INFO
10
14
  src/sirchmunk.egg-info/SOURCES.txt
11
15
  src/sirchmunk.egg-info/dependency_links.txt
12
16
  src/sirchmunk.egg-info/entry_points.txt
13
- src/sirchmunk.egg-info/not-zip-safe
14
17
  src/sirchmunk.egg-info/requires.txt
15
18
  src/sirchmunk.egg-info/top_level.txt
16
19
  src/sirchmunk/insight/__init__.py
@@ -15,21 +15,18 @@ duckdb
15
15
  kreuzberg>=4.0.0rc1
16
16
 
17
17
  [all]
18
- loguru
19
- fastapi
20
- openai
21
- genson
22
- pillow
23
- pypdf
24
- pandas
25
- parquet
26
- numpy
27
- msgpack
28
- sentencepiece
29
- tqdm
30
- rapidfuzz
31
- duckdb
32
- kreuzberg>=4.0.0rc1
18
+ fastapi>=0.100.0
19
+ uvicorn[standard]>=0.24.0
20
+ websockets>=12.0
21
+ python-multipart>=0.0.6
22
+ pydantic>=2.0.0
23
+ requests>=2.32.2
24
+ aiohttp>=3.9.4
25
+ httpx>=0.27.0
26
+ urllib3>=2.2.1
27
+ pydantic>=2.0
28
+ python-dotenv>=1.0.0
29
+ psutil
33
30
  docutils>=0.16.0
34
31
  myst_parser
35
32
  recommonmark
@@ -42,17 +39,6 @@ sphinxawesome-theme
42
39
  sphinxcontrib-mermaid
43
40
  pytest
44
41
  pytest-asyncio
45
- fastapi>=0.100.0
46
- uvicorn[standard]>=0.24.0
47
- websockets>=12.0
48
- python-multipart>=0.0.6
49
- pydantic>=2.0.0
50
- requests>=2.32.2
51
- aiohttp>=3.9.4
52
- urllib3>=2.2.1
53
- pydantic>=2.0
54
- python-dotenv>=1.0.0
55
- psutil
56
42
 
57
43
  [docs]
58
44
  docutils>=0.16.0
@@ -78,6 +64,7 @@ python-multipart>=0.0.6
78
64
  pydantic>=2.0.0
79
65
  requests>=2.32.2
80
66
  aiohttp>=3.9.4
67
+ httpx>=0.27.0
81
68
  urllib3>=2.2.1
82
69
  pydantic>=2.0
83
70
  python-dotenv>=1.0.0
sirchmunk-0.0.1/setup.py DELETED
@@ -1,179 +0,0 @@
1
- # Copyright (c) ModelScope Contributors. All rights reserved.
2
- # !/usr/bin/env python
3
- import os
4
- from os.path import exists
5
- import sys
6
- import re
7
- from typing import List
8
- from setuptools import find_packages, setup
9
-
10
-
11
- def readme():
12
- with open('README.md', encoding='utf-8') as f:
13
- content = f.read()
14
- return content
15
-
16
-
17
- version_file = 'src/sirchmunk/version.py'
18
-
19
-
20
- def get_version():
21
- """
22
- Read version info from version file
23
- """
24
- with open(version_file, 'r', encoding='utf-8') as f:
25
- version_match = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]",
26
- f.read(), re.M)
27
- if version_match:
28
- return version_match.group(1)
29
- raise RuntimeError("Unable to find version string.")
30
-
31
-
32
- def parse_requirements(fname='requirements.txt', with_version=True) -> List[str]:
33
- """
34
- Parse the package dependencies listed in a requirements file but strips
35
- specific versioning information.
36
-
37
- Args:
38
- fname (str): path to requirements file
39
- with_version (bool, default=False): if True include version specs
40
-
41
- Returns:
42
- List[str]: list of requirements items
43
-
44
- CommandLine:
45
- python -c "import setup; print(setup.parse_requirements())"
46
- """
47
- require_fpath = fname
48
-
49
- def parse_line(line):
50
- """
51
- Parse information from a line in a requirements text file
52
- """
53
- if line.startswith('-r '):
54
- # Allow specifying requirements in other files
55
- target = line.split(' ')[1]
56
- relative_base = os.path.dirname(fname)
57
- absolute_target = os.path.join(relative_base, target)
58
- for info in parse_require_file(absolute_target):
59
- yield info
60
- else:
61
- info = {'line': line}
62
- if line.startswith('-e '):
63
- info['package'] = line.split('#egg=')[1]
64
- else:
65
- # Remove versioning from the package
66
- pat = '(' + '|'.join(['>=', '==', '>']) + ')'
67
- parts = re.split(pat, line, maxsplit=1)
68
- parts = [p.strip() for p in parts]
69
-
70
- info['package'] = parts[0]
71
- if len(parts) > 1:
72
- op, rest = parts[1:]
73
- if ';' in rest:
74
- # Handle platform specific dependencies
75
- # http://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-platform-specific-dependencies
76
- version, platform_deps = map(str.strip,
77
- rest.split(';'))
78
- info['platform_deps'] = platform_deps
79
- else:
80
- version = rest # NOQA
81
- info['version'] = (op, version)
82
- yield info
83
-
84
- def parse_require_file(fpath):
85
- with open(fpath, 'r', encoding='utf-8') as f:
86
- for line in f.readlines():
87
- line = line.strip()
88
- if line.startswith('http'):
89
- print('skip http requirements %s' % line)
90
- continue
91
- if line and not line.startswith('#') and not line.startswith(
92
- '--'):
93
- for info in parse_line(line):
94
- yield info
95
- elif line and line.startswith('--find-links'):
96
- eles = line.split()
97
- for e in eles:
98
- e = e.strip()
99
- if 'http' in e:
100
- info = dict(dependency_links=e)
101
- yield info
102
-
103
- def gen_packages_items():
104
- items = []
105
- deps_link = []
106
- if exists(require_fpath):
107
- for info in parse_require_file(require_fpath):
108
- if 'dependency_links' not in info:
109
- parts = [info['package']]
110
- if with_version and 'version' in info:
111
- parts.extend(info['version'])
112
- if not sys.version.startswith('3.4'):
113
- # apparently package_deps are broken in 3.4
114
- platform_deps = info.get('platform_deps')
115
- if platform_deps is not None:
116
- parts.append(';' + platform_deps)
117
- item = ''.join(parts)
118
- items.append(item)
119
- else:
120
- deps_link.append(info['dependency_links'])
121
- return items, deps_link
122
-
123
- return gen_packages_items()
124
-
125
-
126
- if __name__ == '__main__':
127
- print(
128
- 'Usage: `python setup.py sdist bdist_wheel` or `pip install .[core]` from source code'
129
- )
130
-
131
- install_requires, deps_link = parse_requirements(
132
- 'requirements/core.txt')
133
-
134
- extra_requires = {}
135
- all_requires = []
136
- extra_requires['docs'], _ = parse_requirements('requirements/docs.txt')
137
- extra_requires['tests'], _ = parse_requirements('requirements/tests.txt')
138
- extra_requires['web'], _ = parse_requirements('requirements/web.txt')
139
-
140
- all_requires.extend(install_requires)
141
- all_requires.extend(extra_requires['docs'])
142
- all_requires.extend(extra_requires['tests'])
143
- all_requires.extend(extra_requires['web'])
144
- extra_requires['all'] = all_requires
145
-
146
- setup(
147
- name='sirchmunk',
148
- version=get_version(),
149
- description='Sirchmunk: From raw data to self-evolving real-time intelligence.',
150
- long_description=readme(),
151
- long_description_content_type='text/markdown',
152
- author='The ModelScope Team',
153
- author_email='contact@modelscope.cn',
154
- keywords='LLM, Agentic, Search, RAG, Indexless, Self-evolving, Real-time Intelligence, Multi-modal',
155
- url='https://github.com/modelscope/sirchmunk',
156
- packages=find_packages(exclude=('configs', 'demo')),
157
- include_package_data=True,
158
- package_data={
159
- '': ['*.h', '*.cpp', '*.cu'],
160
- },
161
- classifiers=[
162
- 'Development Status :: 4 - Beta',
163
- 'License :: OSI Approved :: Apache Software License',
164
- 'Operating System :: OS Independent',
165
- 'Programming Language :: Python :: 3',
166
- 'Programming Language :: Python :: 3.10',
167
- 'Programming Language :: Python :: 3.11',
168
- 'Programming Language :: Python :: 3.12',
169
- 'Programming Language :: Python :: 3.13',
170
- 'Programming Language :: Python :: 3.14',
171
- ],
172
- license='Apache License 2.0',
173
- install_requires=install_requires,
174
- extras_require=extra_requires,
175
- entry_points={
176
- 'console_scripts': ['sirchmunk=sirchmunk.cli.cli:run_cmd']
177
- },
178
- dependency_links=deps_link,
179
- zip_safe=False)
@@ -1 +0,0 @@
1
- __version__ = "0.0.1"
File without changes
File without changes