licos-dev-sdk 0.2.5__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.
@@ -17,10 +17,10 @@ packages/*/dist/
17
17
  .DS_Store
18
18
  Thumbs.db
19
19
 
20
- # Environment
21
- .env
22
- .env.local
23
- crates/industrial/industrial-stack.env
20
+ # Environment
21
+ .env
22
+ .env.local
23
+ crates/industrial/industrial-stack.env
24
24
 
25
25
  # Workspace
26
26
  /workspace/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: licos-dev-sdk
3
- Version: 0.2.5
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
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "licos-dev-sdk"
7
- version = "0.2.5"
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.8",
11
+ "licos-platform-sdk>=0.2.8",
12
12
  "weasyprint>=62.0",
13
13
  "python-docx>=1.1",
14
14
  "openpyxl>=3.1",
@@ -24,4 +24,4 @@ dependencies = [
24
24
  ]
25
25
 
26
26
  [tool.hatch.build.targets.wheel]
27
- packages = ["src/licos_dev_sdk"]
27
+ packages = ["src/licos_dev_sdk"]
@@ -41,8 +41,9 @@ def __getattr__(name: str):
41
41
  "ModelResult": ("model", "ModelResult"),
42
42
  "ApiError": ("model", "ApiError"),
43
43
  "ConfigurationError": ("model", "ConfigurationError"),
44
- "LLMClient": ("model", "LLMClient"),
45
- "VisionClient": ("model", "VisionClient"),
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"),
@@ -92,7 +93,7 @@ __all__ = [
92
93
  "create_pptx",
93
94
  "ModelRuntime", "ModelEndpoint", "ModelResult",
94
95
  "ApiError", "ConfigurationError",
95
- "LLMClient", "VisionClient", "VisionUnderstandingClient", "ImageGenerationClient", "VideoGenerationClient",
96
+ "LLMClient", "create_chat_openai", "VisionClient", "VisionUnderstandingClient", "ImageGenerationClient", "VideoGenerationClient",
96
97
  "SpeechRecognitionClient", "ASRClient",
97
98
  "fetch_model_catalogs", "fetch_model_detail", "resolve_llm_endpoint", "resolve_vision_endpoint",
98
99
  "resolve_image_generation_endpoint", "resolve_video_generation_endpoint",