pycoze 0.1.68__py3-none-any.whl → 0.1.70__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.
- pycoze/ui/base.py +7 -7
- {pycoze-0.1.68.dist-info → pycoze-0.1.70.dist-info}/METADATA +1 -1
- {pycoze-0.1.68.dist-info → pycoze-0.1.70.dist-info}/RECORD +6 -6
- {pycoze-0.1.68.dist-info → pycoze-0.1.70.dist-info}/LICENSE +0 -0
- {pycoze-0.1.68.dist-info → pycoze-0.1.70.dist-info}/WHEEL +0 -0
- {pycoze-0.1.68.dist-info → pycoze-0.1.70.dist-info}/top_level.txt +0 -0
pycoze/ui/base.py
CHANGED
@@ -18,16 +18,16 @@ def get_ui():
|
|
18
18
|
return {}
|
19
19
|
stack = inspect.stack()
|
20
20
|
stack_files = list(reversed([s.filename.replace("\\", "/") for s in stack]))
|
21
|
-
|
21
|
+
match_ui_file = None
|
22
22
|
for f in stack_files:
|
23
|
-
for
|
23
|
+
for v in params["uiData"]["uiRecord"]:
|
24
24
|
if v == f:
|
25
|
-
|
25
|
+
match_ui_file = v
|
26
26
|
break
|
27
|
-
if
|
27
|
+
if match_ui_file is not None:
|
28
28
|
break
|
29
29
|
|
30
|
-
if
|
30
|
+
if match_ui_file is None:
|
31
31
|
raise Exception("uiData not found for file")
|
32
32
|
|
33
33
|
by = params["uiData"]["by"]
|
@@ -35,11 +35,11 @@ def get_ui():
|
|
35
35
|
for i in range(10):
|
36
36
|
try:
|
37
37
|
if by == "file":
|
38
|
-
json_file = params["uiData"][
|
38
|
+
json_file = params["uiData"][match_ui_file]
|
39
39
|
with open(json_file, "r", encoding="utf-8") as f:
|
40
40
|
return json.load(f)
|
41
41
|
else:
|
42
|
-
assert by == "
|
42
|
+
assert by == "workflow"
|
43
43
|
workflow_file = params["uiData"]["workflowFile"]
|
44
44
|
node_id = params["uiData"]["nodeId"]
|
45
45
|
with open(workflow_file, "r", encoding="utf-8") as f:
|
@@ -15,15 +15,15 @@ pycoze/bot/agent/agent_types/react_prompt.py,sha256=jyovokGaPzNIe5bvTRvn0gmsWLx5
|
|
15
15
|
pycoze/gpu/__init__.py,sha256=cuxwDdz2Oo-VcwZ50FtFtEIJXdqoz2el-n0QpSt_NMc,75
|
16
16
|
pycoze/gpu/gpu_reserve.py,sha256=T-M1w8DiQQNtyNVok9Fj9qXGfTs5mxJp-gw-rxs50es,5410
|
17
17
|
pycoze/ui/__init__.py,sha256=7xAfL2lfG7-jllPJEZUJO89xUE9sNzvo1y0WmBswjBI,458
|
18
|
-
pycoze/ui/base.py,sha256=
|
18
|
+
pycoze/ui/base.py,sha256=JOYQZGT8aai8szXAEI0q15MR5Snj8N9sn5CYn-JtkhI,1527
|
19
19
|
pycoze/ui/color.py,sha256=cT9Ib8uNzkOKxyW0IwVj46o4LwdB1xgNCj1_Rou9d_4,854
|
20
20
|
pycoze/ui/typ.py,sha256=NpT0FrbHvByOszBZMFtroRp7I7pN-38tYz_zPOPejF4,1723
|
21
21
|
pycoze/ui/ui_def.py,sha256=UhhU_yB3GV9ISbvTWT48hsHPHI250BhMILh6bu5Uioo,4206
|
22
22
|
pycoze/utils/__init__.py,sha256=KExBkotf23dr2NfTEouWke5nJB1q2IuDXgHrmuyd95k,73
|
23
23
|
pycoze/utils/arg.py,sha256=AhOobJNjifCf7dKKPZa7AsN7CcZg3OSECUp9TZIrDTI,748
|
24
24
|
pycoze/utils/text_or_file.py,sha256=gpxZVWt2DW6YiEg_MnMuwg36VNf3TX383QD_1oZNB0Y,551
|
25
|
-
pycoze-0.1.
|
26
|
-
pycoze-0.1.
|
27
|
-
pycoze-0.1.
|
28
|
-
pycoze-0.1.
|
29
|
-
pycoze-0.1.
|
25
|
+
pycoze-0.1.70.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
26
|
+
pycoze-0.1.70.dist-info/METADATA,sha256=vVXYXdqi6ZUYjgvCKvss9eYbMFOfv1YhS6cxFU1kFgE,719
|
27
|
+
pycoze-0.1.70.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
28
|
+
pycoze-0.1.70.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
29
|
+
pycoze-0.1.70.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|