tokengrid 0.1.0__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.
- tokengrid-0.1.0/PKG-INFO +11 -0
- tokengrid-0.1.0/README.md +3 -0
- tokengrid-0.1.0/pyproject.toml +11 -0
tokengrid-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tokengrid
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: TokenGrid — OpenAI-compatible LLM gateway. Coming soon.
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# TokenGrid
|
|
10
|
+
|
|
11
|
+
OpenAI-compatible LLM gateway. Coming soon at https://tokengrid.dev
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tokengrid"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "TokenGrid — OpenAI-compatible LLM gateway. Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|