agentforge-reranker-mixedbread 0.2.3__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.
- agentforge_reranker_mixedbread-0.2.3/.gitignore +49 -0
- agentforge_reranker_mixedbread-0.2.3/LICENSE +202 -0
- agentforge_reranker_mixedbread-0.2.3/PKG-INFO +62 -0
- agentforge_reranker_mixedbread-0.2.3/README.md +37 -0
- agentforge_reranker_mixedbread-0.2.3/pyproject.toml +54 -0
- agentforge_reranker_mixedbread-0.2.3/src/agentforge_reranker_mixedbread/__init__.py +8 -0
- agentforge_reranker_mixedbread-0.2.3/src/agentforge_reranker_mixedbread/_inmem_runner.py +44 -0
- agentforge_reranker_mixedbread-0.2.3/src/agentforge_reranker_mixedbread/_runner.py +62 -0
- agentforge_reranker_mixedbread-0.2.3/src/agentforge_reranker_mixedbread/py.typed +0 -0
- agentforge_reranker_mixedbread-0.2.3/src/agentforge_reranker_mixedbread/reranker.py +112 -0
- agentforge_reranker_mixedbread-0.2.3/tests/integration/test_mixedbread_live.py +46 -0
- agentforge_reranker_mixedbread-0.2.3/tests/unit/test_mixedbread_reranker.py +96 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
|
|
7
|
+
# Distribution / packaging
|
|
8
|
+
.Python
|
|
9
|
+
build/
|
|
10
|
+
dist/
|
|
11
|
+
*.egg-info/
|
|
12
|
+
*.egg
|
|
13
|
+
wheels/
|
|
14
|
+
sdist/
|
|
15
|
+
share/python-wheels/
|
|
16
|
+
|
|
17
|
+
# uv
|
|
18
|
+
.venv/
|
|
19
|
+
uv-cache/
|
|
20
|
+
|
|
21
|
+
# Testing
|
|
22
|
+
.pytest_cache/
|
|
23
|
+
.coverage
|
|
24
|
+
.coverage.*
|
|
25
|
+
htmlcov/
|
|
26
|
+
coverage.xml
|
|
27
|
+
.tox/
|
|
28
|
+
.mypy_cache/
|
|
29
|
+
.ruff_cache/
|
|
30
|
+
.hypothesis/
|
|
31
|
+
|
|
32
|
+
# Environment
|
|
33
|
+
.env
|
|
34
|
+
.envrc
|
|
35
|
+
|
|
36
|
+
# Editors
|
|
37
|
+
.vscode/
|
|
38
|
+
.idea/
|
|
39
|
+
*.swp
|
|
40
|
+
*.swo
|
|
41
|
+
*~
|
|
42
|
+
|
|
43
|
+
# OS
|
|
44
|
+
.DS_Store
|
|
45
|
+
Thumbs.db
|
|
46
|
+
|
|
47
|
+
# Project-local
|
|
48
|
+
*.local
|
|
49
|
+
.agentforge-state/.session-cache
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentforge-reranker-mixedbread
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: Mixedbread AI managed-API reranker for AgentForge
|
|
5
|
+
Project-URL: Homepage, https://github.com/Scaffoldic/agentforge-py
|
|
6
|
+
Project-URL: Repository, https://github.com/Scaffoldic/agentforge-py
|
|
7
|
+
Project-URL: Changelog, https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md
|
|
8
|
+
Project-URL: Issues, https://github.com/Scaffoldic/agentforge-py/issues
|
|
9
|
+
Author: The AgentForge Authors
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: agent,ai,mixedbread,rag,rerank
|
|
13
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
|
+
Classifier: Typing :: Typed
|
|
20
|
+
Requires-Python: >=3.13
|
|
21
|
+
Requires-Dist: agentforge-core~=0.2.3
|
|
22
|
+
Provides-Extra: mixedbread
|
|
23
|
+
Requires-Dist: mixedbread-ai>=2.0; extra == 'mixedbread'
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# agentforge-reranker-mixedbread
|
|
27
|
+
|
|
28
|
+
Mixedbread AI managed-API reranker for the AgentForge
|
|
29
|
+
framework.
|
|
30
|
+
|
|
31
|
+
Registers as `agentforge.rerankers:mixedbread`. Implements
|
|
32
|
+
the `Reranker` ABC from `agentforge-core`.
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install agentforge-reranker-mixedbread[mixedbread]
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
```yaml
|
|
43
|
+
retrieval:
|
|
44
|
+
reranker:
|
|
45
|
+
name: mixedbread
|
|
46
|
+
config:
|
|
47
|
+
api_key: ${MIXEDBREAD_API_KEY}
|
|
48
|
+
model: mixedbread-ai/mxbai-rerank-large-v1
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
```python
|
|
52
|
+
from agentforge_reranker_mixedbread import MixedbreadReranker
|
|
53
|
+
|
|
54
|
+
reranker = MixedbreadReranker.from_config(
|
|
55
|
+
api_key="...",
|
|
56
|
+
model="mixedbread-ai/mxbai-rerank-large-v1",
|
|
57
|
+
)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
Apache-2.0.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# agentforge-reranker-mixedbread
|
|
2
|
+
|
|
3
|
+
Mixedbread AI managed-API reranker for the AgentForge
|
|
4
|
+
framework.
|
|
5
|
+
|
|
6
|
+
Registers as `agentforge.rerankers:mixedbread`. Implements
|
|
7
|
+
the `Reranker` ABC from `agentforge-core`.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install agentforge-reranker-mixedbread[mixedbread]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```yaml
|
|
18
|
+
retrieval:
|
|
19
|
+
reranker:
|
|
20
|
+
name: mixedbread
|
|
21
|
+
config:
|
|
22
|
+
api_key: ${MIXEDBREAD_API_KEY}
|
|
23
|
+
model: mixedbread-ai/mxbai-rerank-large-v1
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
from agentforge_reranker_mixedbread import MixedbreadReranker
|
|
28
|
+
|
|
29
|
+
reranker = MixedbreadReranker.from_config(
|
|
30
|
+
api_key="...",
|
|
31
|
+
model="mixedbread-ai/mxbai-rerank-large-v1",
|
|
32
|
+
)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
Apache-2.0.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# agentforge-reranker-mixedbread — Mixedbread AI Rerank API for AgentForge.
|
|
2
|
+
|
|
3
|
+
[project]
|
|
4
|
+
name = "agentforge-reranker-mixedbread"
|
|
5
|
+
version = "0.2.3"
|
|
6
|
+
description = "Mixedbread AI managed-API reranker for AgentForge"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
requires-python = ">=3.13"
|
|
9
|
+
license = "Apache-2.0"
|
|
10
|
+
license-files = ["LICENSE"]
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "The AgentForge Authors"},
|
|
13
|
+
]
|
|
14
|
+
keywords = ["ai", "agent", "rag", "rerank", "mixedbread"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: Apache Software License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
"Typing :: Typed",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
dependencies = [
|
|
26
|
+
"agentforge-core ~= 0.2.3",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.optional-dependencies]
|
|
30
|
+
mixedbread = ["mixedbread-ai>=2.0"]
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://github.com/Scaffoldic/agentforge-py"
|
|
34
|
+
Repository = "https://github.com/Scaffoldic/agentforge-py"
|
|
35
|
+
Changelog = "https://github.com/Scaffoldic/agentforge-py/blob/main/CHANGELOG.md"
|
|
36
|
+
Issues = "https://github.com/Scaffoldic/agentforge-py/issues"
|
|
37
|
+
|
|
38
|
+
[project.entry-points."agentforge.rerankers"]
|
|
39
|
+
mixedbread = "agentforge_reranker_mixedbread:MixedbreadReranker"
|
|
40
|
+
|
|
41
|
+
[build-system]
|
|
42
|
+
requires = ["hatchling>=1.27"]
|
|
43
|
+
build-backend = "hatchling.build"
|
|
44
|
+
|
|
45
|
+
[tool.hatch.build.targets.wheel]
|
|
46
|
+
packages = ["src/agentforge_reranker_mixedbread"]
|
|
47
|
+
|
|
48
|
+
[tool.hatch.build.targets.sdist]
|
|
49
|
+
include = [
|
|
50
|
+
"src/agentforge_reranker_mixedbread",
|
|
51
|
+
"tests",
|
|
52
|
+
"README.md",
|
|
53
|
+
"LICENSE",
|
|
54
|
+
]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""`agentforge-reranker-mixedbread` — Mixedbread AI reranker."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from agentforge_reranker_mixedbread._runner import MixedbreadRunner
|
|
6
|
+
from agentforge_reranker_mixedbread.reranker import MixedbreadReranker
|
|
7
|
+
|
|
8
|
+
__all__ = ["MixedbreadReranker", "MixedbreadRunner"]
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"""In-memory `MixedbreadRunner` for unit tests + downstream integration."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from dataclasses import dataclass
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class _RerankCall:
|
|
10
|
+
query: str
|
|
11
|
+
documents: list[str]
|
|
12
|
+
model: str
|
|
13
|
+
top_k: int
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class FakeMixedbreadRunner:
|
|
17
|
+
"""In-memory recorder of every Mixedbread rerank call."""
|
|
18
|
+
|
|
19
|
+
def __init__(self, results: list[tuple[int, float]] | None = None) -> None:
|
|
20
|
+
self._results = list(results or [])
|
|
21
|
+
self.rerank_calls: list[_RerankCall] = []
|
|
22
|
+
self.closed = False
|
|
23
|
+
|
|
24
|
+
def set_results(self, results: list[tuple[int, float]]) -> None:
|
|
25
|
+
self._results = list(results)
|
|
26
|
+
|
|
27
|
+
def rerank(
|
|
28
|
+
self,
|
|
29
|
+
*,
|
|
30
|
+
query: str,
|
|
31
|
+
documents: list[str],
|
|
32
|
+
model: str,
|
|
33
|
+
top_k: int,
|
|
34
|
+
) -> list[tuple[int, float]]:
|
|
35
|
+
self.rerank_calls.append(
|
|
36
|
+
_RerankCall(query=query, documents=list(documents), model=model, top_k=top_k),
|
|
37
|
+
)
|
|
38
|
+
return self._results[:top_k]
|
|
39
|
+
|
|
40
|
+
def close(self) -> None:
|
|
41
|
+
self.closed = True
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
__all__ = ["FakeMixedbreadRunner"]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""Mixedbread runner Protocol + production SDK wrapper."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Any, Protocol
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class MixedbreadRunner(Protocol):
|
|
9
|
+
"""Lifecycle Protocol for one Mixedbread rerank call."""
|
|
10
|
+
|
|
11
|
+
def rerank(
|
|
12
|
+
self,
|
|
13
|
+
*,
|
|
14
|
+
query: str,
|
|
15
|
+
documents: list[str],
|
|
16
|
+
model: str,
|
|
17
|
+
top_k: int,
|
|
18
|
+
) -> list[tuple[int, float]]: # pragma: no cover
|
|
19
|
+
"""Score each ``(query, document)`` pair.
|
|
20
|
+
|
|
21
|
+
Returns a list of ``(original_index, score)`` tuples in
|
|
22
|
+
descending-score order.
|
|
23
|
+
"""
|
|
24
|
+
...
|
|
25
|
+
|
|
26
|
+
def close(self) -> None: # pragma: no cover
|
|
27
|
+
"""Release any held HTTP session."""
|
|
28
|
+
...
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class _MixedbreadClientRunner: # pragma: no cover — exercised only with `-m live`.
|
|
32
|
+
"""Production runner wrapping ``mixedbread_ai.MixedbreadAI``."""
|
|
33
|
+
|
|
34
|
+
def __init__(self, client: Any, *, timeout_s: float = 30.0) -> None:
|
|
35
|
+
self._client = client
|
|
36
|
+
self._timeout_s = timeout_s
|
|
37
|
+
|
|
38
|
+
def rerank(
|
|
39
|
+
self,
|
|
40
|
+
*,
|
|
41
|
+
query: str,
|
|
42
|
+
documents: list[str],
|
|
43
|
+
model: str,
|
|
44
|
+
top_k: int,
|
|
45
|
+
) -> list[tuple[int, float]]:
|
|
46
|
+
response = self._client.rerank(
|
|
47
|
+
model=model,
|
|
48
|
+
query=query,
|
|
49
|
+
input=documents,
|
|
50
|
+
top_k=top_k,
|
|
51
|
+
)
|
|
52
|
+
# Mixedbread returns response.data as a list of items
|
|
53
|
+
# carrying `.index` + `.score`.
|
|
54
|
+
return [(item.index, float(item.score)) for item in response.data]
|
|
55
|
+
|
|
56
|
+
def close(self) -> None:
|
|
57
|
+
close = getattr(self._client, "close", None)
|
|
58
|
+
if callable(close):
|
|
59
|
+
close()
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
__all__ = ["MixedbreadRunner"]
|
|
File without changes
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"""`MixedbreadReranker` — Mixedbread AI managed-API reranker.
|
|
2
|
+
|
|
3
|
+
Implements the locked `Reranker` ABC from feat-021 against
|
|
4
|
+
Mixedbread's Rerank API. Scores from the API are already in
|
|
5
|
+
``[0, 1]``; the reranker applies a defensive clamp.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
from typing import TYPE_CHECKING
|
|
11
|
+
|
|
12
|
+
from agentforge_core.contracts.reranker import Reranker
|
|
13
|
+
from agentforge_core.production.exceptions import ModuleError
|
|
14
|
+
from agentforge_core.values.vector import VectorMatch
|
|
15
|
+
|
|
16
|
+
if TYPE_CHECKING:
|
|
17
|
+
from agentforge_reranker_mixedbread._runner import MixedbreadRunner
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
_DEFAULT_MODEL = "mixedbread-ai/mxbai-rerank-large-v1"
|
|
21
|
+
_DEFAULT_TIMEOUT_S = 30.0
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def _clamp_unit(score: float) -> float:
|
|
25
|
+
return max(0.0, min(1.0, score))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class MixedbreadReranker(Reranker):
|
|
29
|
+
"""Mixedbread-backed managed-API reranker."""
|
|
30
|
+
|
|
31
|
+
def __init__(self, *, runner: MixedbreadRunner, model: str = _DEFAULT_MODEL) -> None:
|
|
32
|
+
self._runner = runner
|
|
33
|
+
self._model = model
|
|
34
|
+
|
|
35
|
+
@classmethod
|
|
36
|
+
def from_config(
|
|
37
|
+
cls,
|
|
38
|
+
*,
|
|
39
|
+
api_key: str,
|
|
40
|
+
model: str = _DEFAULT_MODEL,
|
|
41
|
+
timeout_s: float = _DEFAULT_TIMEOUT_S,
|
|
42
|
+
) -> MixedbreadReranker: # pragma: no cover — exercised only with `-m live`.
|
|
43
|
+
runner = _build_mixedbread_runner(api_key=api_key, timeout_s=timeout_s)
|
|
44
|
+
return cls(runner=runner, model=model)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
def model(self) -> str:
|
|
48
|
+
return self._model
|
|
49
|
+
|
|
50
|
+
async def rerank(
|
|
51
|
+
self,
|
|
52
|
+
query: str,
|
|
53
|
+
candidates: list[VectorMatch],
|
|
54
|
+
*,
|
|
55
|
+
top_k: int | None = None,
|
|
56
|
+
) -> list[VectorMatch]:
|
|
57
|
+
if top_k is not None and top_k < 1:
|
|
58
|
+
msg = f"top_k must be >= 1, got {top_k}"
|
|
59
|
+
raise ValueError(msg)
|
|
60
|
+
if not candidates:
|
|
61
|
+
return []
|
|
62
|
+
|
|
63
|
+
n = len(candidates)
|
|
64
|
+
request_top_k = top_k if top_k is not None else n
|
|
65
|
+
|
|
66
|
+
documents = [c.text for c in candidates]
|
|
67
|
+
scored = self._runner.rerank(
|
|
68
|
+
query=query,
|
|
69
|
+
documents=documents,
|
|
70
|
+
model=self._model,
|
|
71
|
+
top_k=request_top_k,
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
return [
|
|
75
|
+
VectorMatch(
|
|
76
|
+
id=candidates[idx].id,
|
|
77
|
+
text=candidates[idx].text,
|
|
78
|
+
metadata=candidates[idx].metadata,
|
|
79
|
+
score=_clamp_unit(score),
|
|
80
|
+
)
|
|
81
|
+
for idx, score in scored
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
async def close(self) -> None:
|
|
85
|
+
self._runner.close()
|
|
86
|
+
|
|
87
|
+
def capabilities(self) -> set[str]:
|
|
88
|
+
return {"managed", "batched"}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def _build_mixedbread_runner( # pragma: no cover — `-m live` only.
|
|
92
|
+
*,
|
|
93
|
+
api_key: str,
|
|
94
|
+
timeout_s: float,
|
|
95
|
+
) -> MixedbreadRunner:
|
|
96
|
+
"""Lazy-import `mixedbread_ai` and build the production runner."""
|
|
97
|
+
try:
|
|
98
|
+
from mixedbread_ai.client import MixedbreadAI # noqa: PLC0415
|
|
99
|
+
except ImportError as exc:
|
|
100
|
+
msg = (
|
|
101
|
+
"mixedbread-ai is not installed. Install via "
|
|
102
|
+
"`pip install agentforge-reranker-mixedbread[mixedbread]` to use the production runner."
|
|
103
|
+
)
|
|
104
|
+
raise ModuleError(msg) from exc
|
|
105
|
+
|
|
106
|
+
from agentforge_reranker_mixedbread._runner import _MixedbreadClientRunner # noqa: PLC0415
|
|
107
|
+
|
|
108
|
+
client = MixedbreadAI(api_key=api_key)
|
|
109
|
+
return _MixedbreadClientRunner(client, timeout_s=timeout_s)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
__all__ = ["MixedbreadReranker"]
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""Live `MixedbreadReranker` integration test (feat-021 vendor follow-up)."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import os
|
|
6
|
+
|
|
7
|
+
import pytest
|
|
8
|
+
from agentforge_core.values.vector import VectorMatch
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@pytest.mark.live
|
|
12
|
+
@pytest.mark.asyncio
|
|
13
|
+
async def test_mixedbread_live_reorders_known_candidates() -> None:
|
|
14
|
+
api_key = os.environ.get("MIXEDBREAD_API_KEY")
|
|
15
|
+
if not api_key:
|
|
16
|
+
pytest.skip("MIXEDBREAD_API_KEY not set")
|
|
17
|
+
|
|
18
|
+
from agentforge_reranker_mixedbread import MixedbreadReranker # noqa: PLC0415
|
|
19
|
+
|
|
20
|
+
candidates = [
|
|
21
|
+
VectorMatch(id="weather", text="The weather today is sunny.", score=0.5, metadata={}),
|
|
22
|
+
VectorMatch(
|
|
23
|
+
id="deploy",
|
|
24
|
+
text="To deploy an agent, run `agentforge run` from your project root.",
|
|
25
|
+
score=0.5,
|
|
26
|
+
metadata={},
|
|
27
|
+
),
|
|
28
|
+
VectorMatch(
|
|
29
|
+
id="recipe",
|
|
30
|
+
text="Pasta carbonara needs eggs, pancetta, and pepper.",
|
|
31
|
+
score=0.5,
|
|
32
|
+
metadata={},
|
|
33
|
+
),
|
|
34
|
+
]
|
|
35
|
+
reranker = MixedbreadReranker.from_config(api_key=api_key)
|
|
36
|
+
try:
|
|
37
|
+
results = await reranker.rerank(
|
|
38
|
+
"how do I deploy an agentforge agent?",
|
|
39
|
+
candidates,
|
|
40
|
+
top_k=3,
|
|
41
|
+
)
|
|
42
|
+
finally:
|
|
43
|
+
await reranker.close()
|
|
44
|
+
|
|
45
|
+
assert results[0].id == "deploy"
|
|
46
|
+
assert all(0.0 <= r.score <= 1.0 for r in results)
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"""Unit tests for `MixedbreadReranker` (feat-021 vendor follow-up)."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import pytest
|
|
6
|
+
from agentforge_core.testing import run_reranker_conformance
|
|
7
|
+
from agentforge_core.values.vector import VectorMatch
|
|
8
|
+
from agentforge_reranker_mixedbread import MixedbreadReranker
|
|
9
|
+
from agentforge_reranker_mixedbread._inmem_runner import FakeMixedbreadRunner
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _candidates() -> list[VectorMatch]:
|
|
13
|
+
return [
|
|
14
|
+
VectorMatch(id="a", text="alpha", score=0.5, metadata={"i": 0}),
|
|
15
|
+
VectorMatch(id="b", text="beta", score=0.5, metadata={"i": 1}),
|
|
16
|
+
VectorMatch(id="c", text="gamma", score=0.5, metadata={"i": 2}),
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
@pytest.mark.asyncio
|
|
21
|
+
async def test_rerank_sorts_per_api_response_order() -> None:
|
|
22
|
+
runner = FakeMixedbreadRunner(results=[(2, 0.95), (0, 0.7), (1, 0.2)])
|
|
23
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
24
|
+
results = await reranker.rerank("q", _candidates())
|
|
25
|
+
assert [r.id for r in results] == ["c", "a", "b"]
|
|
26
|
+
assert results[0].score == 0.95
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@pytest.mark.asyncio
|
|
30
|
+
async def test_rerank_clamps_out_of_range_scores() -> None:
|
|
31
|
+
runner = FakeMixedbreadRunner(results=[(0, 1.5), (1, -0.2), (2, 0.5)])
|
|
32
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
33
|
+
results = await reranker.rerank("q", _candidates())
|
|
34
|
+
assert all(0.0 <= r.score <= 1.0 for r in results)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
@pytest.mark.asyncio
|
|
38
|
+
async def test_rerank_top_k_caps_request_and_response() -> None:
|
|
39
|
+
runner = FakeMixedbreadRunner(results=[(0, 0.9), (1, 0.8), (2, 0.7)])
|
|
40
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
41
|
+
results = await reranker.rerank("q", _candidates(), top_k=2)
|
|
42
|
+
assert len(results) == 2
|
|
43
|
+
assert runner.rerank_calls[0].top_k == 2
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@pytest.mark.asyncio
|
|
47
|
+
async def test_rerank_top_k_none_forwards_full_count() -> None:
|
|
48
|
+
runner = FakeMixedbreadRunner(results=[(0, 0.9), (1, 0.8), (2, 0.7)])
|
|
49
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
50
|
+
await reranker.rerank("q", _candidates())
|
|
51
|
+
assert runner.rerank_calls[0].top_k == 3
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
@pytest.mark.asyncio
|
|
55
|
+
async def test_rerank_empty_candidates_short_circuits() -> None:
|
|
56
|
+
runner = FakeMixedbreadRunner()
|
|
57
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
58
|
+
assert await reranker.rerank("q", []) == []
|
|
59
|
+
assert runner.rerank_calls == []
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
@pytest.mark.asyncio
|
|
63
|
+
async def test_rerank_rejects_zero_top_k() -> None:
|
|
64
|
+
reranker = MixedbreadReranker(runner=FakeMixedbreadRunner())
|
|
65
|
+
with pytest.raises(ValueError, match="top_k"):
|
|
66
|
+
await reranker.rerank("q", _candidates(), top_k=0)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
@pytest.mark.asyncio
|
|
70
|
+
async def test_capabilities_advertised() -> None:
|
|
71
|
+
reranker = MixedbreadReranker(runner=FakeMixedbreadRunner())
|
|
72
|
+
assert reranker.capabilities() == {"managed", "batched"}
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
@pytest.mark.asyncio
|
|
76
|
+
async def test_close_propagates_to_runner() -> None:
|
|
77
|
+
runner = FakeMixedbreadRunner()
|
|
78
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
79
|
+
await reranker.close()
|
|
80
|
+
assert runner.closed
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
@pytest.mark.asyncio
|
|
84
|
+
async def test_model_property_exposed() -> None:
|
|
85
|
+
reranker = MixedbreadReranker(
|
|
86
|
+
runner=FakeMixedbreadRunner(),
|
|
87
|
+
model="mixedbread-ai/mxbai-rerank-base-v1",
|
|
88
|
+
)
|
|
89
|
+
assert reranker.model == "mixedbread-ai/mxbai-rerank-base-v1"
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
@pytest.mark.asyncio
|
|
93
|
+
async def test_conformance_suite() -> None:
|
|
94
|
+
runner = FakeMixedbreadRunner(results=[(0, 0.9), (1, 0.6), (2, 0.3)])
|
|
95
|
+
reranker = MixedbreadReranker(runner=runner)
|
|
96
|
+
await run_reranker_conformance(reranker)
|