opengradient 0.4.0__tar.gz → 0.4.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.
- {opengradient-0.4.0/src/opengradient.egg-info → opengradient-0.4.1}/PKG-INFO +1 -1
- {opengradient-0.4.0 → opengradient-0.4.1}/pyproject.toml +1 -1
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/types.py +2 -1
- {opengradient-0.4.0 → opengradient-0.4.1/src/opengradient.egg-info}/PKG-INFO +1 -1
- {opengradient-0.4.0 → opengradient-0.4.1}/LICENSE +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/MANIFEST.in +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/README.md +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/setup.cfg +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/__init__.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/abi/ModelExecutorHistorical.abi +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/abi/inference.abi +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/account.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/cli.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/client.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/contracts/templates/ModelExecutorHistorical.bin +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/defaults.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/exceptions.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/llm/__init__.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/llm/og_langchain.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/llm/og_openai.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/mltools/__init__.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/mltools/model_tool.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/proto/__init__.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/proto/infer.proto +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/proto/infer_pb2.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/proto/infer_pb2_grpc.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient/utils.py +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient.egg-info/SOURCES.txt +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient.egg-info/dependency_links.txt +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient.egg-info/entry_points.txt +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient.egg-info/requires.txt +0 -0
- {opengradient-0.4.0 → opengradient-0.4.1}/src/opengradient.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "opengradient"
|
|
7
|
-
version = "0.4.
|
|
7
|
+
version = "0.4.1"
|
|
8
8
|
description = "Python SDK for OpenGradient decentralized model management & inference services"
|
|
9
9
|
authors = [{name = "OpenGradient", email = "oliver@opengradient.ai"}]
|
|
10
10
|
license = {file = "LICENSE"}
|
|
@@ -133,11 +133,12 @@ class LLM(str, Enum):
|
|
|
133
133
|
MISTRAL_7B_INSTRUCT_V3 = "mistralai/Mistral-7B-Instruct-v0.3"
|
|
134
134
|
QWEN_2_5_72B_INSTRUCT = "Qwen/Qwen2.5-72B-Instruct"
|
|
135
135
|
META_LLAMA_3_1_70B_INSTRUCT = "meta-llama/Llama-3.1-70B-Instruct"
|
|
136
|
+
DOBBY_UNHINGED_3_1_8B = "SentientAGI/Dobby-Mini-Unhinged-Llama-3.1-8B"
|
|
137
|
+
DOBBY_LEASHED_3_1_8B = "SentientAGI/Dobby-Mini-Leashed-Llama-3.1-8B"
|
|
136
138
|
|
|
137
139
|
|
|
138
140
|
class TEE_LLM(str, Enum):
|
|
139
141
|
"""Enum for LLM models available for TEE execution"""
|
|
140
|
-
QWEN_2_5_72B_INSTRUCT = "Qwen/Qwen2.5-72B-Instruct"
|
|
141
142
|
META_LLAMA_3_1_70B_INSTRUCT = "meta-llama/Llama-3.1-70B-Instruct"
|
|
142
143
|
|
|
143
144
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|