cycls 0.0.2.89__py3-none-any.whl → 0.0.2.90__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.
- cycls/themes/{defaultN/assets/index-DOmNqb-2.js → default/assets/index-zAUKbDo6.js} +23 -23
- cycls/themes/default/index.html +6 -2
- {cycls-0.0.2.89.dist-info → cycls-0.0.2.90.dist-info}/METADATA +15 -5
- cycls-0.0.2.90.dist-info/RECORD +14 -0
- cycls/themes/default/assets/index-C2r4Daz3.js +0 -435
- cycls/themes/default/assets/index-DWGS8zpa.css +0 -1
- cycls/themes/defaultN/index.html +0 -32
- cycls-0.0.2.89.dist-info/RECORD +0 -17
- /cycls/themes/{defaultN → default}/assets/index-oGkkm3Z8.css +0 -0
- {cycls-0.0.2.89.dist-info → cycls-0.0.2.90.dist-info}/WHEEL +0 -0
- {cycls-0.0.2.89.dist-info → cycls-0.0.2.90.dist-info}/entry_points.txt +0 -0
cycls/themes/default/index.html
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<title>AI Agent</title>
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<!-- Default SEO tags - dynamically updated by SEOHead component -->
|
|
8
|
+
<meta name="robots" content="noindex, nofollow" />
|
|
9
|
+
<meta name="googlebot" content="noindex, nofollow" />
|
|
10
|
+
<meta name="description" content="AI-powered chat interface" />
|
|
7
11
|
<script src="https://cdn.tailwindcss.com?plugins=forms,typography"></script>
|
|
8
12
|
<link
|
|
9
13
|
rel="stylesheet"
|
|
@@ -13,8 +17,8 @@
|
|
|
13
17
|
rel="stylesheet"
|
|
14
18
|
href="https://esm.sh/katex@0.16.8/dist/katex.min.css"
|
|
15
19
|
/>
|
|
16
|
-
<script type="module" crossorigin src="/assets/index-
|
|
17
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
20
|
+
<script type="module" crossorigin src="/assets/index-zAUKbDo6.js"></script>
|
|
21
|
+
<link rel="stylesheet" crossorigin href="/assets/index-oGkkm3Z8.css">
|
|
18
22
|
</head>
|
|
19
23
|
<body style="overflow-x: hidden">
|
|
20
24
|
<div id="root"></div>
|
|
@@ -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
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
cycls/__init__.py,sha256=efbq0vRijGOByKtz9bRF8WQFYmnPSgZV1DH-54s6iwQ,493
|
|
2
|
+
cycls/app.py,sha256=5Uns6lwZCU5qwFD80vOJ_omDlhlEOGP65woK7rg2tn8,3222
|
|
3
|
+
cycls/auth.py,sha256=xkndHZyCfnlertMMEKerCJjf23N3fVcTRVTTSXTTuzg,247
|
|
4
|
+
cycls/cli.py,sha256=cVbIkTDnVofohvByyYUrXF_RYDQZVQECJqo7cPBPJfs,4781
|
|
5
|
+
cycls/function.py,sha256=FP94mCd5hfCASFwsTSYny7KOEsJOh3LME9oZgiVfgzo,14795
|
|
6
|
+
cycls/web.py,sha256=XbSgra1G_L61tr1TshVeqjNERoFtFH_4VIwnQFxH00g,6242
|
|
7
|
+
cycls/themes/default/index.html,sha256=UFVO8M-ZLQegknKHj750ddHVZBRdoDy2lw24-VTHm9Y,1082
|
|
8
|
+
cycls/themes/default/assets/index-oGkkm3Z8.css,sha256=xHhbrJvvz8mIN_Otrl6nawKJcA41L3tCFhVEOstGhVU,6498
|
|
9
|
+
cycls/themes/default/assets/index-zAUKbDo6.js,sha256=22QXtR54l35a5CJhyOxfOTCLBF_uHurfUnL7L2ivG2g,1351998
|
|
10
|
+
cycls/themes/dev/index.html,sha256=QJBHkdNuMMiwQU7o8dN8__8YQeQB45D37D-NCXIWB2Q,11585
|
|
11
|
+
cycls-0.0.2.90.dist-info/METADATA,sha256=SGJ7bWQjLA3eIp6uQXdZTQP6rtb98elI160nkWG8MjI,8761
|
|
12
|
+
cycls-0.0.2.90.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
13
|
+
cycls-0.0.2.90.dist-info/entry_points.txt,sha256=CktT5eNvW_Qxomf7L_Ez_GdUbL6qAfx_Utm6_HtUJwE,41
|
|
14
|
+
cycls-0.0.2.90.dist-info/RECORD,,
|