cycls 0.0.2.54__py3-none-any.whl → 0.0.2.56__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/sdk.py +2 -2
- cycls/theme/assets/index-C3BC5odN.css +1 -0
- cycls/theme/assets/index-CabnsD7I.js +400 -0
- cycls/theme/index.html +2 -2
- cycls/web.py +3 -1
- {cycls-0.0.2.54.dist-info → cycls-0.0.2.56.dist-info}/METADATA +1 -1
- cycls-0.0.2.56.dist-info/RECORD +10 -0
- cycls/theme/assets/index-CE4acW4J.css +0 -1
- cycls/theme/assets/index-DK37eWM7.js +0 -393
- cycls-0.0.2.54.dist-info/RECORD +0 -10
- {cycls-0.0.2.54.dist-info → cycls-0.0.2.56.dist-info}/WHEEL +0 -0
cycls/sdk.py
CHANGED
|
@@ -25,11 +25,11 @@ class Agent:
|
|
|
25
25
|
|
|
26
26
|
self.registered_functions = []
|
|
27
27
|
|
|
28
|
-
def __call__(self, name=None, header="", intro="", title="", domain=None, auth=False):
|
|
28
|
+
def __call__(self, name=None, header="", intro="", title="", domain=None, auth=False, tier="free"):
|
|
29
29
|
def decorator(f):
|
|
30
30
|
self.registered_functions.append({
|
|
31
31
|
"func": f,
|
|
32
|
-
"config": ["theme", False, self.org, self.api_token, header, intro, title, auth],
|
|
32
|
+
"config": ["theme", False, self.org, self.api_token, header, intro, title, auth, tier],
|
|
33
33
|
# "name": name,
|
|
34
34
|
"name": name or (f.__name__).replace('_', '-'),
|
|
35
35
|
"domain": domain or f"{name}.cycls.ai",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.cl-internal-p8bmz4{box-shadow:none!important;border:1px solid rgba(0,0,0,.1);box-shadow:0 1px 2px #0000000d}.cl-drawerRoot{z-index:99!important}.cl-pricingTableCardFooterButton{padding:10px}.cl-pricingTableCardFee{font-size:2rem}.cl-pricingTableCardTitleContainer{margin-bottom:10px}
|