genosis 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.
- genosis-0.0.1/PKG-INFO +21 -0
- genosis-0.0.1/README.md +5 -0
- genosis-0.0.1/genosis/__init__.py +1 -0
- genosis-0.0.1/pyproject.toml +23 -0
genosis-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: genosis
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for the Genosis LLM cost optimization platform. Coming soon.
|
|
5
|
+
Project-URL: Homepage, https://usegenosis.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/Genosis-Limited/genosis-python
|
|
7
|
+
Author-email: Genosis Limited <sam@usegenosis.ai>
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Keywords: ai,cache,cost,genosis,llm,optimization
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# genosis
|
|
18
|
+
|
|
19
|
+
Official Python SDK for the Genosis LLM cost optimization platform.
|
|
20
|
+
|
|
21
|
+
Coming soon. Visit [usegenosis.ai](https://usegenosis.ai) for more information.
|
genosis-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Genosis SDK — coming soon. Visit https://usegenosis.ai
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "genosis"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Python SDK for the Genosis LLM cost optimization platform. Coming soon."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "Apache-2.0"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
keywords = ["genosis", "llm", "cache", "optimization", "ai", "cost"]
|
|
13
|
+
authors = [{name = "Genosis Limited", email = "sam@usegenosis.ai"}]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://usegenosis.ai"
|
|
23
|
+
Repository = "https://github.com/Genosis-Limited/genosis-python"
|