koava 0.0.0__py3-none-macosx_10_12_x86_64.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.
Binary file
@@ -0,0 +1,75 @@
1
+ Metadata-Version: 2.4
2
+ Name: koava
3
+ Version: 0.0.0
4
+ License-File: LICENSE
5
+ Summary: KoalaVault model converter tool for producers
6
+ Author-email: KoalaVault Team <koalavaultx@gmail.com>
7
+ License: MIT
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
+ Project-URL: Homepage, https://www.koalavault.ai
11
+ Project-URL: Repository, https://github.com/koalavault/koalavault.ai
12
+
13
+ # KoalaVault Converter (koava)
14
+
15
+ [![PyPI version](https://badge.fury.io/py/koava.svg)](https://badge.fury.io/py/koava)
16
+ [![Python versions](https://img.shields.io/pypi/pyversions/koava.svg)](https://pypi.org/project/koava/)
17
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
18
+
19
+ **koava** - KoalaVault seller tool for secure encryption and upload AI models.
20
+
21
+ ## Features
22
+
23
+ - **Secure Encryption**: Encrypt Hugging Face safetensors models to KoalaVault format
24
+ - **Automatic Backup**: Create backups during encryption process
25
+ - **Cloud Storage**: Upload encrypted models to KoalaVault server
26
+ - **Model Management**: List, delete, and restore model files
27
+ - **Cross-Platform**: Supports Linux (x86_64, ARM64) and macOS (x86_64, ARM64)
28
+ - **High Performance**: Built with Rust
29
+
30
+ ## Installation
31
+
32
+ ```bash
33
+ pip install koava
34
+ ```
35
+
36
+ ## Quick Start
37
+
38
+ ### 1. Login
39
+
40
+ ```bash
41
+ koava login sk-1234567890abcdef
42
+ ```
43
+
44
+ ### 2. Encrypt Model
45
+
46
+ ```bash
47
+ koava encrypt ./my-model
48
+ ```
49
+
50
+ ### 3. Upload to Server
51
+
52
+ ```bash
53
+ koava push ./my-model
54
+ ```
55
+
56
+ ### 4. Manage Models
57
+
58
+ ```bash
59
+ koava list my-model # List model files
60
+ koava remove my-model # Delete model
61
+ koava restore ./my-model # Restore from backup
62
+ ```
63
+
64
+
65
+ ## Documentation
66
+
67
+ - [Complete Documentation](https://www.koalavault.ai/docs/koava)
68
+
69
+ ## Support
70
+
71
+ For support, visit [KoalaVault Website](https://www.koalavault.ai) or contact support.
72
+
73
+ ---
74
+
75
+ **koava** - KoalaVault seller tool for secure AI model management!
@@ -0,0 +1,5 @@
1
+ koava-0.0.0.data/scripts/koava,sha256=5Z25kkDfsj1GzVAOBJnZhkF0eiom4joONFS8HXEzySU,15902504
2
+ koava-0.0.0.dist-info/METADATA,sha256=IUzQ4AiRPYCMZK8jJVbiorGoSZPHBUKqZiTSZ_xumew,1925
3
+ koava-0.0.0.dist-info/WHEEL,sha256=3d83jW30nHjv88WPXL7TZKm7uTjU1OFFsI02FHqx91U,103
4
+ koava-0.0.0.dist-info/licenses/LICENSE,sha256=uRWdUaD4qV_8aGfvtKvYd8pGC8-OAjjhaHXwxzBoZIc,1072
5
+ koava-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.9.4)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-macosx_10_12_x86_64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 KoalaVault Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.