eeane 0.0.1__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.
- eeane-0.0.1/PKG-INFO +27 -0
- eeane-0.0.1/README.md +15 -0
- eeane-0.0.1/eeane/__init__.py +3 -0
- eeane-0.0.1/pyproject.toml +19 -0
eeane-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: eeane
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Embedding engine for Apple Neural Engine (placeholder release; under development)
|
|
5
|
+
Project-URL: Homepage, https://github.com/xhighhongo41/eeANE
|
|
6
|
+
Project-URL: Repository, https://github.com/xhighhongo41/eeANE
|
|
7
|
+
Author: xhighhongo41
|
|
8
|
+
License-Expression: GPL-3.0-or-later
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# eeANE
|
|
14
|
+
|
|
15
|
+
**eeANE** (embedding engine for Apple Neural Engine) runs embedding and reranking
|
|
16
|
+
models on the Apple Neural Engine, serving OpenAI-compatible `/v1/embeddings` and
|
|
17
|
+
Infinity-compatible `/rerank` APIs.
|
|
18
|
+
|
|
19
|
+
This is a **placeholder release** to reserve the package name. The project is
|
|
20
|
+
under active development on GitHub:
|
|
21
|
+
|
|
22
|
+
https://github.com/xhighhongo41/eeANE
|
|
23
|
+
|
|
24
|
+
Please install from the GitHub repository until an official release is published
|
|
25
|
+
on PyPI.
|
|
26
|
+
|
|
27
|
+
License: GPL-3.0-or-later
|
eeane-0.0.1/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# eeANE
|
|
2
|
+
|
|
3
|
+
**eeANE** (embedding engine for Apple Neural Engine) runs embedding and reranking
|
|
4
|
+
models on the Apple Neural Engine, serving OpenAI-compatible `/v1/embeddings` and
|
|
5
|
+
Infinity-compatible `/rerank` APIs.
|
|
6
|
+
|
|
7
|
+
This is a **placeholder release** to reserve the package name. The project is
|
|
8
|
+
under active development on GitHub:
|
|
9
|
+
|
|
10
|
+
https://github.com/xhighhongo41/eeANE
|
|
11
|
+
|
|
12
|
+
Please install from the GitHub repository until an official release is published
|
|
13
|
+
on PyPI.
|
|
14
|
+
|
|
15
|
+
License: GPL-3.0-or-later
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "eeane"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Embedding engine for Apple Neural Engine (placeholder release; under development)"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = "GPL-3.0-or-later"
|
|
8
|
+
authors = [{ name = "xhighhongo41" }]
|
|
9
|
+
classifiers = [
|
|
10
|
+
"Development Status :: 1 - Planning",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[project.urls]
|
|
14
|
+
Homepage = "https://github.com/xhighhongo41/eeANE"
|
|
15
|
+
Repository = "https://github.com/xhighhongo41/eeANE"
|
|
16
|
+
|
|
17
|
+
[build-system]
|
|
18
|
+
requires = ["hatchling"]
|
|
19
|
+
build-backend = "hatchling.build"
|