amd-gaia 0.15.1__py3-none-any.whl → 0.15.2__py3-none-any.whl

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.
@@ -0,0 +1,23 @@
1
+ # Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved.
2
+ # SPDX-License-Identifier: MIT
3
+
4
+ """
5
+ GAIA Installer Module
6
+
7
+ Provides functionality for:
8
+ - Installing Lemonade Server from GitHub releases
9
+ - Downloading required models for different profiles
10
+ - Initializing GAIA with a single command
11
+ """
12
+
13
+ from gaia.installer.lemonade_installer import (
14
+ InstallResult,
15
+ LemonadeInfo,
16
+ LemonadeInstaller,
17
+ )
18
+
19
+ __all__ = [
20
+ "LemonadeInstaller",
21
+ "LemonadeInfo",
22
+ "InstallResult",
23
+ ]