onde-cli 0.2.0__py3-none-win_amd64.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,169 @@
1
+ Metadata-Version: 2.4
2
+ Name: onde-cli
3
+ Version: 0.2.0
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Environment :: Console
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: License :: OSI Approved :: Apache Software License
9
+ Classifier: Operating System :: MacOS
10
+ Classifier: Operating System :: Microsoft :: Windows
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Rust
14
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
+ Classifier: Topic :: Software Development :: Libraries
16
+ Classifier: Topic :: Utilities
17
+ Summary: Terminal UI for Onde Inference models, apps, and account management.
18
+ Keywords: onde,cli,tui,inference,llm,on-device
19
+ Home-Page: https://ondeinference.com
20
+ Author-email: Seto Elkahfi <hej@setoelkahfi.se>
21
+ License: MIT OR Apache-2.0
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
24
+ Project-URL: Documentation, https://ondeinference.com
25
+ Project-URL: Homepage, https://ondeinference.com
26
+ Project-URL: Issues, https://github.com/ondeinference/onde-cli/issues
27
+ Project-URL: Repository, https://github.com/ondeinference/onde-cli
28
+
29
+ <p align="center">
30
+ <img src="https://raw.githubusercontent.com/ondeinference/onde/main/assets/onde-inference-logo.svg" alt="Onde Inference" width="80">
31
+ </p>
32
+
33
+ <h1 align="center">onde</h1>
34
+
35
+ <p align="center">
36
+ <strong>Manage your <a href="https://ondeinference.com">Onde Inference</a> apps from the terminal.</strong><br>
37
+ Sign up, sign in, assign models — no browser required.
38
+ </p>
39
+
40
+ <p align="center">
41
+ <a href="https://ondeinference.com"><img src="https://img.shields.io/badge/ondeinference.com-235843?style=flat-square&labelColor=17211D" alt="Website"></a>
42
+ <a href="https://pypi.org/project/onde-cli/"><img src="https://img.shields.io/pypi/v/onde-cli?style=flat-square&labelColor=17211D&color=235843" alt="PyPI"></a>
43
+ <a href="https://crates.io/crates/onde-cli"><img src="https://img.shields.io/crates/v/onde-cli?style=flat-square&labelColor=17211D&color=235843" alt="Crates.io"></a>
44
+ <a href="https://github.com/ondeinference/onde-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT%20%2F%20Apache--2.0-235843?style=flat-square&labelColor=17211D" alt="License"></a>
45
+ </p>
46
+
47
+ <br>
48
+
49
+ <p align="center">
50
+ <img src="https://raw.githubusercontent.com/ondeinference/onde-cli/main/assets/screenshot.png" alt="onde CLI — apps list with model assignments" width="720">
51
+ </p>
52
+
53
+ <br>
54
+
55
+ ---
56
+
57
+ ## Install
58
+
59
+ ```sh
60
+ pip install onde-cli
61
+ ```
62
+
63
+ Installs the native `onde` binary for your platform — no compiler, no Node.js, no runtime dependencies.
64
+
65
+ ## Quick start
66
+
67
+ ```sh
68
+ onde
69
+ ```
70
+
71
+ A full terminal UI opens. Create an account or sign in, then manage your apps and model assignments without leaving the terminal.
72
+
73
+ ## Keys
74
+
75
+ ### Auth screen
76
+
77
+ | Key | Action |
78
+ |-----------|---------------------------|
79
+ | `Tab` | Move between fields |
80
+ | `Enter` | Submit form |
81
+ | `Ctrl+L` | Switch to Sign in |
82
+ | `Ctrl+N` | Switch to Create account |
83
+ | `Ctrl+C` | Quit |
84
+
85
+ ### Apps list
86
+
87
+ | Key | Action |
88
+ |-----------|---------------------------|
89
+ | `↑` `↓` | Navigate apps |
90
+ | `Enter` | Open app detail |
91
+ | `n` | Create new app |
92
+ | `s` | Sign out |
93
+ | `Ctrl+C` | Quit |
94
+
95
+ ### App detail
96
+
97
+ | Key | Action |
98
+ |-----------|---------------------------|
99
+ | `m` | Assign / change model |
100
+ | `r` | Rename app |
101
+ | `s` | Sign out |
102
+ | `Esc` | Back to apps list |
103
+
104
+ ### Model picker
105
+
106
+ | Key | Action |
107
+ |-----------|---------------------------|
108
+ | `↑` `↓` | Navigate models |
109
+ | `Enter` | Assign selected model |
110
+ | `Esc` | Cancel |
111
+
112
+ ## Other installation methods
113
+
114
+ ### Cargo
115
+
116
+ ```sh
117
+ cargo install onde-cli
118
+ ```
119
+
120
+ ### From source
121
+
122
+ ```sh
123
+ git clone https://github.com/ondeinference/onde-cli
124
+ cd onde-cli
125
+ cargo build --release
126
+ ./target/release/onde
127
+ ```
128
+
129
+ ## Platform support
130
+
131
+ Pre-built native binaries ship for every major platform:
132
+
133
+ | Platform | Architecture |
134
+ |---------------|--------------|
135
+ | macOS | arm64, x64 |
136
+ | Linux (glibc) | arm64, x64 |
137
+ | Windows | arm64, x64 |
138
+
139
+ ## Debug logs
140
+
141
+ Logs are written to `~/.cache/onde/debug.log`. Nothing touches the terminal output — ratatui owns the screen exclusively while the TUI is open.
142
+
143
+ ## Related
144
+
145
+ | SDK | Install |
146
+ |-----|---------|
147
+ | [Swift SDK](https://github.com/ondeinference/onde-swift) | Swift Package Manager |
148
+ | [Flutter SDK](https://pub.dev/packages/onde_inference) | `flutter pub add onde_inference` |
149
+ | [React Native SDK](https://www.npmjs.com/package/@ondeinference/react-native) | `npm i @ondeinference/react-native` |
150
+ | [Rust crate](https://crates.io/crates/onde) | `cargo add onde` |
151
+
152
+ ## Source & issues
153
+
154
+ This package ships a pre-built native binary. Source lives at
155
+ [github.com/ondeinference/onde-cli](https://github.com/ondeinference/onde-cli) —
156
+ file bugs and feature requests there.
157
+
158
+ ## License
159
+
160
+ Dual-licensed under **MIT** and **Apache 2.0**.
161
+
162
+ - [MIT License](https://github.com/ondeinference/onde-cli/blob/main/LICENSE-MIT)
163
+ - [Apache License 2.0](https://github.com/ondeinference/onde-cli/blob/main/LICENSE-APACHE)
164
+
165
+ ---
166
+
167
+ <p align="center">
168
+ <sub>Built by <a href="https://ondeinference.com">Onde Inference</a> · © 2026</sub>
169
+ </p>
@@ -0,0 +1,5 @@
1
+ onde_cli-0.2.0.data/scripts/onde.exe,sha256=X7u8_UapnkZPHk6H-_FoqgTAuwKVw0zVV2eE3EUB4Vg,13171712
2
+ onde_cli-0.2.0.dist-info/METADATA,sha256=RZ56yA85bPPbfIdOnIi1QPl4Iz5sdVWbwddBqUudMS8,5730
3
+ onde_cli-0.2.0.dist-info/WHEEL,sha256=0cg7uMdVM1SNK0ih4zFWnV0wsxqvcArlTmRGOaRhEnw,94
4
+ onde_cli-0.2.0.dist-info/sboms/onde-cli.cyclonedx.json,sha256=yAapSO2yCjC2GFVmHpQ6CU6rotGTMDM3it75-QkYuls,428439
5
+ onde_cli-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.13.1)
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64