cycls 0.0.2.89__tar.gz → 0.0.2.90__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.
- {cycls-0.0.2.89 → cycls-0.0.2.90}/PKG-INFO +15 -5
- {cycls-0.0.2.89 → cycls-0.0.2.90}/README.md +14 -4
- cycls-0.0.2.89/cycls/themes/defaultN/assets/index-DOmNqb-2.js → cycls-0.0.2.90/cycls/themes/default/assets/index-zAUKbDo6.js +23 -23
- {cycls-0.0.2.89/cycls/themes/defaultN → cycls-0.0.2.90/cycls/themes/default}/index.html +1 -1
- {cycls-0.0.2.89 → cycls-0.0.2.90}/pyproject.toml +1 -1
- cycls-0.0.2.89/cycls/themes/default/assets/index-C2r4Daz3.js +0 -435
- cycls-0.0.2.89/cycls/themes/default/assets/index-DWGS8zpa.css +0 -1
- cycls-0.0.2.89/cycls/themes/default/index.html +0 -28
- {cycls-0.0.2.89 → cycls-0.0.2.90}/.gitignore +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/__init__.py +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/app.py +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/auth.py +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/cli.py +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/function.py +0 -0
- {cycls-0.0.2.89/cycls/themes/defaultN → cycls-0.0.2.90/cycls/themes/default}/assets/index-oGkkm3Z8.css +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/themes/dev/index.html +0 -0
- {cycls-0.0.2.89 → cycls-0.0.2.90}/cycls/web.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cycls
|
|
3
|
-
Version: 0.0.2.
|
|
3
|
+
Version: 0.0.2.90
|
|
4
4
|
Summary: Distribute Intelligence
|
|
5
5
|
Author-email: "Mohammed J. AlRujayi" <mj@cycls.com>
|
|
6
6
|
Requires-Python: >=3.9
|
|
@@ -19,7 +19,8 @@ Distribute Intelligence
|
|
|
19
19
|
|
|
20
20
|
<h4 align="center">
|
|
21
21
|
<a href="https://cycls.com">Website</a> |
|
|
22
|
-
<a href="https://docs.cycls.com">Docs</a>
|
|
22
|
+
<a href="https://docs.cycls.com">Docs</a> |
|
|
23
|
+
<a href="docs/tutorial.md">Tutorial</a>
|
|
23
24
|
</h4>
|
|
24
25
|
|
|
25
26
|
<h4 align="center">
|
|
@@ -79,7 +80,7 @@ app.deploy() # Live at https://agent.cycls.ai
|
|
|
79
80
|
pip install cycls
|
|
80
81
|
```
|
|
81
82
|
|
|
82
|
-
Requires Docker.
|
|
83
|
+
Requires Docker. See the [full tutorial](docs/tutorial.md) for a comprehensive guide.
|
|
83
84
|
|
|
84
85
|
## What You Get
|
|
85
86
|
|
|
@@ -102,6 +103,8 @@ Get an API key at [cycls.com](https://cycls.com).
|
|
|
102
103
|
|
|
103
104
|
## Authentication & Analytics
|
|
104
105
|
|
|
106
|
+
See the [tutorial](docs/tutorial.md#authentication) for full auth and monetization examples.
|
|
107
|
+
|
|
105
108
|
```python
|
|
106
109
|
@cycls.app(pip=["openai"], auth=True, analytics=True)
|
|
107
110
|
async def app(context):
|
|
@@ -118,7 +121,7 @@ async def app(context):
|
|
|
118
121
|
|
|
119
122
|
## Native UI Components
|
|
120
123
|
|
|
121
|
-
Yield structured objects for rich streaming responses
|
|
124
|
+
Yield structured objects for rich streaming responses. See the [tutorial](docs/tutorial.md#native-ui-components) for all component types and examples.
|
|
122
125
|
|
|
123
126
|
```python
|
|
124
127
|
@cycls.app()
|
|
@@ -193,7 +196,7 @@ See [docs/streaming-protocol.md](docs/streaming-protocol.md) for frontend integr
|
|
|
193
196
|
|
|
194
197
|
## Declarative Infrastructure
|
|
195
198
|
|
|
196
|
-
Define your entire runtime in the decorator
|
|
199
|
+
Define your entire runtime in the decorator. See the [tutorial](docs/tutorial.md#declarative-infrastructure) for more details.
|
|
197
200
|
|
|
198
201
|
```python
|
|
199
202
|
@cycls.app(
|
|
@@ -264,6 +267,13 @@ Access them at `https://your-app.cycls.ai/public/logo.png`.
|
|
|
264
267
|
|
|
265
268
|
No YAML. No Dockerfiles. No infrastructure repo. The code is the deployment.
|
|
266
269
|
|
|
270
|
+
## Learn More
|
|
271
|
+
|
|
272
|
+
- [Tutorial](docs/tutorial.md) - Comprehensive guide from basics to advanced
|
|
273
|
+
- [Streaming Protocol](docs/streaming-protocol.md) - Frontend integration
|
|
274
|
+
- [Runtime](docs/runtime.md) - Containerization details
|
|
275
|
+
- [Examples](examples/) - Working code samples
|
|
276
|
+
|
|
267
277
|
## License
|
|
268
278
|
|
|
269
279
|
MIT
|
|
@@ -4,7 +4,8 @@ Distribute Intelligence
|
|
|
4
4
|
|
|
5
5
|
<h4 align="center">
|
|
6
6
|
<a href="https://cycls.com">Website</a> |
|
|
7
|
-
<a href="https://docs.cycls.com">Docs</a>
|
|
7
|
+
<a href="https://docs.cycls.com">Docs</a> |
|
|
8
|
+
<a href="docs/tutorial.md">Tutorial</a>
|
|
8
9
|
</h4>
|
|
9
10
|
|
|
10
11
|
<h4 align="center">
|
|
@@ -64,7 +65,7 @@ app.deploy() # Live at https://agent.cycls.ai
|
|
|
64
65
|
pip install cycls
|
|
65
66
|
```
|
|
66
67
|
|
|
67
|
-
Requires Docker.
|
|
68
|
+
Requires Docker. See the [full tutorial](docs/tutorial.md) for a comprehensive guide.
|
|
68
69
|
|
|
69
70
|
## What You Get
|
|
70
71
|
|
|
@@ -87,6 +88,8 @@ Get an API key at [cycls.com](https://cycls.com).
|
|
|
87
88
|
|
|
88
89
|
## Authentication & Analytics
|
|
89
90
|
|
|
91
|
+
See the [tutorial](docs/tutorial.md#authentication) for full auth and monetization examples.
|
|
92
|
+
|
|
90
93
|
```python
|
|
91
94
|
@cycls.app(pip=["openai"], auth=True, analytics=True)
|
|
92
95
|
async def app(context):
|
|
@@ -103,7 +106,7 @@ async def app(context):
|
|
|
103
106
|
|
|
104
107
|
## Native UI Components
|
|
105
108
|
|
|
106
|
-
Yield structured objects for rich streaming responses
|
|
109
|
+
Yield structured objects for rich streaming responses. See the [tutorial](docs/tutorial.md#native-ui-components) for all component types and examples.
|
|
107
110
|
|
|
108
111
|
```python
|
|
109
112
|
@cycls.app()
|
|
@@ -178,7 +181,7 @@ See [docs/streaming-protocol.md](docs/streaming-protocol.md) for frontend integr
|
|
|
178
181
|
|
|
179
182
|
## Declarative Infrastructure
|
|
180
183
|
|
|
181
|
-
Define your entire runtime in the decorator
|
|
184
|
+
Define your entire runtime in the decorator. See the [tutorial](docs/tutorial.md#declarative-infrastructure) for more details.
|
|
182
185
|
|
|
183
186
|
```python
|
|
184
187
|
@cycls.app(
|
|
@@ -249,6 +252,13 @@ Access them at `https://your-app.cycls.ai/public/logo.png`.
|
|
|
249
252
|
|
|
250
253
|
No YAML. No Dockerfiles. No infrastructure repo. The code is the deployment.
|
|
251
254
|
|
|
255
|
+
## Learn More
|
|
256
|
+
|
|
257
|
+
- [Tutorial](docs/tutorial.md) - Comprehensive guide from basics to advanced
|
|
258
|
+
- [Streaming Protocol](docs/streaming-protocol.md) - Frontend integration
|
|
259
|
+
- [Runtime](docs/runtime.md) - Containerization details
|
|
260
|
+
- [Examples](examples/) - Working code samples
|
|
261
|
+
|
|
252
262
|
## License
|
|
253
263
|
|
|
254
264
|
MIT
|