hyperforge-nucliadb-agentic 1.0.0.post64__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.
- hyperforge_nucliadb_agentic-1.0.0.post64/PKG-INFO +24 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/README.md +2 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/pyproject.toml +50 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/__init__.py +3 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/agent.py +1642 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/__init__.py +5 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/audit.py +439 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/exceptions.py +50 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/lifespan.py +21 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/model.py +1299 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/predict.py +431 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/predict_models.py +78 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/__init__.py +0 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/ask.py +1182 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/graph_strategy.py +1138 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/highlight.py +93 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/hydrator.py +29 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/metrics.py +112 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/parsers/__init__.py +0 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/parsers/ask.py +70 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/parsers/fetcher.py +192 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/parsers/find.py +729 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/prompt.py +1298 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/rank_fusion.py +157 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/rerankers.py +161 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/retrieval.py +750 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/search/rpc.py +192 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/settings.py +9 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/utils/ids.py +188 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/utils/proto.py +6 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/utils/responses.py +6 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/ask/utils/text_blocks.py +51 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/config.py +47 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/internal_driver.py +87 -0
- hyperforge_nucliadb_agentic-1.0.0.post64/src/hyperforge_nucliadb_agentic/py.typed +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hyperforge_nucliadb_agentic
|
|
3
|
+
Version: 1.0.0.post64
|
|
4
|
+
Summary: NucliaDB Hyperforge agent
|
|
5
|
+
Author: Nuclia
|
|
6
|
+
Author-email: Nuclia <nucliadb@nuclia.com>
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Classifier: Programming Language :: Python
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
+
Requires-Dist: hyperforge>=1.0.0.post76
|
|
15
|
+
Requires-Dist: lingua-language-detector
|
|
16
|
+
Requires-Dist: nucliadb-sdk
|
|
17
|
+
Requires-Python: >=3.10, <4
|
|
18
|
+
Project-URL: Homepage, https://progress.com
|
|
19
|
+
Project-URL: Repository, https://github.com/nuclia/nucliadb_agentic_api
|
|
20
|
+
Project-URL: Changelog, https://github.com/nuclia/nucliadb_agentic_api/blob/main/agents/nucliadb/CHANGELOG.md
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# NucliaDB Agentic Hyperforge agents
|
|
24
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["uv_build>=0.11.19,<0.12"]
|
|
3
|
+
build-backend = "uv_build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hyperforge_nucliadb_agentic"
|
|
7
|
+
version = "1.0.0.post64"
|
|
8
|
+
license = "Apache-2.0"
|
|
9
|
+
description = "NucliaDB Hyperforge agent"
|
|
10
|
+
authors = [{ name = "Nuclia", email = "nucliadb@nuclia.com" }]
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python",
|
|
14
|
+
"Programming Language :: Python :: 3.10",
|
|
15
|
+
"Programming Language :: Python :: 3.11",
|
|
16
|
+
"Programming Language :: Python :: 3.12",
|
|
17
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
18
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
19
|
+
]
|
|
20
|
+
requires-python = ">=3.10, <4"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"hyperforge>=1.0.0.post76",
|
|
23
|
+
"lingua-language-detector",
|
|
24
|
+
"nucliadb_sdk",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[dependency-groups]
|
|
28
|
+
# these dependencies are actually in the src/ folder (under
|
|
29
|
+
# src/nucliadb_utils/tests/), but only used when the module is imported
|
|
30
|
+
dev = [
|
|
31
|
+
"pytest",
|
|
32
|
+
"pytest-benchmark",
|
|
33
|
+
"pytest-docker-fixtures>=1.4.2",
|
|
34
|
+
"pytest-lazy-fixtures",
|
|
35
|
+
"hyperforge_rephrase",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://progress.com"
|
|
40
|
+
Repository = "https://github.com/nuclia/nucliadb_agentic_api"
|
|
41
|
+
Changelog = "https://github.com/nuclia/nucliadb_agentic_api/blob/main/agents/nucliadb/CHANGELOG.md"
|
|
42
|
+
|
|
43
|
+
[tool.pytest.ini_options]
|
|
44
|
+
asyncio_mode = "auto"
|
|
45
|
+
testpaths = ["tests"]
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
[tool.uv.build-backend]
|
|
49
|
+
# Include additional non-Python asset files
|
|
50
|
+
source-exclude = ["tests/**/*"]
|