licos-dev-sdk 0.2.4__tar.gz → 0.2.6__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.
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/.gitignore +1 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/PKG-INFO +2 -2
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/pyproject.toml +2 -2
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/__init__.py +10 -9
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/model.py +718 -404
- licos_dev_sdk-0.2.6/tests/test_model.py +446 -0
- licos_dev_sdk-0.2.4/tests/test_model.py +0 -271
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/_utils.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/archive.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/chart.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/data.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/diagram.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/document.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/image.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/observability.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/presentation.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/spreadsheet.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/src/licos_dev_sdk/web.py +0 -0
- {licos_dev_sdk-0.2.4 → licos_dev_sdk-0.2.6}/tests/test_observability.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: licos-dev-sdk
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
4
4
|
Summary: LICOS Dev SDK - file generation and model capability clients
|
|
5
5
|
Requires-Python: >=3.10
|
|
6
6
|
Requires-Dist: graphviz>=0.20
|
|
7
7
|
Requires-Dist: jinja2>=3.1
|
|
8
|
-
Requires-Dist: licos-platform-sdk>=0.2.
|
|
8
|
+
Requires-Dist: licos-platform-sdk>=0.2.8
|
|
9
9
|
Requires-Dist: matplotlib>=3.9
|
|
10
10
|
Requires-Dist: mistune>=3.0
|
|
11
11
|
Requires-Dist: openpyxl>=3.1
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "licos-dev-sdk"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.6"
|
|
8
8
|
description = "LICOS Dev SDK - file generation and model capability clients"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"licos-platform-sdk>=0.2.
|
|
11
|
+
"licos-platform-sdk>=0.2.8",
|
|
12
12
|
"weasyprint>=62.0",
|
|
13
13
|
"python-docx>=1.1",
|
|
14
14
|
"openpyxl>=3.1",
|
|
@@ -41,16 +41,17 @@ def __getattr__(name: str):
|
|
|
41
41
|
"ModelResult": ("model", "ModelResult"),
|
|
42
42
|
"ApiError": ("model", "ApiError"),
|
|
43
43
|
"ConfigurationError": ("model", "ConfigurationError"),
|
|
44
|
-
"LLMClient": ("model", "LLMClient"),
|
|
45
|
-
"
|
|
44
|
+
"LLMClient": ("model", "LLMClient"),
|
|
45
|
+
"create_chat_openai": ("model", "create_chat_openai"),
|
|
46
|
+
"VisionClient": ("model", "VisionClient"),
|
|
46
47
|
"VisionUnderstandingClient": ("model", "VisionUnderstandingClient"),
|
|
47
48
|
"ImageGenerationClient": ("model", "ImageGenerationClient"),
|
|
48
49
|
"VideoGenerationClient": ("model", "VideoGenerationClient"),
|
|
49
50
|
"SpeechRecognitionClient": ("model", "SpeechRecognitionClient"),
|
|
50
|
-
"ASRClient": ("model", "ASRClient"),
|
|
51
|
-
"fetch_model_catalogs": ("model", "fetch_model_catalogs"),
|
|
52
|
-
"fetch_model_detail": ("model", "fetch_model_detail"),
|
|
53
|
-
"resolve_llm_endpoint": ("model", "resolve_llm_endpoint"),
|
|
51
|
+
"ASRClient": ("model", "ASRClient"),
|
|
52
|
+
"fetch_model_catalogs": ("model", "fetch_model_catalogs"),
|
|
53
|
+
"fetch_model_detail": ("model", "fetch_model_detail"),
|
|
54
|
+
"resolve_llm_endpoint": ("model", "resolve_llm_endpoint"),
|
|
54
55
|
"resolve_vision_endpoint": ("model", "resolve_vision_endpoint"),
|
|
55
56
|
"resolve_image_generation_endpoint": ("model", "resolve_image_generation_endpoint"),
|
|
56
57
|
"resolve_video_generation_endpoint": ("model", "resolve_video_generation_endpoint"),
|
|
@@ -92,9 +93,9 @@ __all__ = [
|
|
|
92
93
|
"create_pptx",
|
|
93
94
|
"ModelRuntime", "ModelEndpoint", "ModelResult",
|
|
94
95
|
"ApiError", "ConfigurationError",
|
|
95
|
-
"LLMClient", "VisionClient", "VisionUnderstandingClient", "ImageGenerationClient", "VideoGenerationClient",
|
|
96
|
-
"SpeechRecognitionClient", "ASRClient",
|
|
97
|
-
"fetch_model_catalogs", "fetch_model_detail", "resolve_llm_endpoint", "resolve_vision_endpoint",
|
|
96
|
+
"LLMClient", "create_chat_openai", "VisionClient", "VisionUnderstandingClient", "ImageGenerationClient", "VideoGenerationClient",
|
|
97
|
+
"SpeechRecognitionClient", "ASRClient",
|
|
98
|
+
"fetch_model_catalogs", "fetch_model_detail", "resolve_llm_endpoint", "resolve_vision_endpoint",
|
|
98
99
|
"resolve_image_generation_endpoint", "resolve_video_generation_endpoint",
|
|
99
100
|
"resolve_speech_recognition_endpoint",
|
|
100
101
|
"invoke_llm", "generate_image", "generate_video", "recognize_speech", "understand_image",
|