pycoze 0.1.60__py3-none-any.whl → 0.1.62__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/__init__.py +1 -0
- pycoze/ui/ui_def.py +15 -1
- {pycoze-0.1.60.dist-info → pycoze-0.1.62.dist-info}/METADATA +1 -1
- {pycoze-0.1.60.dist-info → pycoze-0.1.62.dist-info}/RECORD +7 -7
- {pycoze-0.1.60.dist-info → pycoze-0.1.62.dist-info}/LICENSE +0 -0
- {pycoze-0.1.60.dist-info → pycoze-0.1.62.dist-info}/WHEEL +0 -0
- {pycoze-0.1.60.dist-info → pycoze-0.1.62.dist-info}/top_level.txt +0 -0
pycoze/ui/__init__.py
CHANGED
pycoze/ui/ui_def.py
CHANGED
@@ -3,6 +3,7 @@ from .typ import useDefaultType
|
|
3
3
|
from typing import Union, List
|
4
4
|
from .color import hex_to_rgb, rgb_to_hsl, ColorFormat
|
5
5
|
import sys
|
6
|
+
import inspect
|
6
7
|
|
7
8
|
|
8
9
|
def useDefault(name, default):
|
@@ -51,7 +52,20 @@ def password(name, default, tip="", hide_if="", style="", cls="") -> str:
|
|
51
52
|
|
52
53
|
|
53
54
|
def tool(name, default, tools, tip="", hide_if="", style="", cls="") -> str:
|
54
|
-
|
55
|
+
ret = useDefault(name, default)
|
56
|
+
if isinstance(ret, str):
|
57
|
+
# 获取调用栈
|
58
|
+
frame = inspect.currentframe()
|
59
|
+
try:
|
60
|
+
# 获取调用者的全局变量
|
61
|
+
caller_globals = frame.f_back.f_globals
|
62
|
+
finally:
|
63
|
+
del frame
|
64
|
+
|
65
|
+
ret = eval(ret, caller_globals)
|
66
|
+
return ret
|
67
|
+
else:
|
68
|
+
return ret
|
55
69
|
|
56
70
|
|
57
71
|
def color(
|
@@ -14,16 +14,16 @@ pycoze/bot/agent/agent_types/react_agent.py,sha256=AnjHwHXVwLAm77ndglJGi4rQhqDGW
|
|
14
14
|
pycoze/bot/agent/agent_types/react_prompt.py,sha256=jyovokGaPzNIe5bvTRvn0gmsWLx5kpDIPmRwmEMCl-M,2142
|
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
|
-
pycoze/ui/__init__.py,sha256=
|
17
|
+
pycoze/ui/__init__.py,sha256=7xAfL2lfG7-jllPJEZUJO89xUE9sNzvo1y0WmBswjBI,458
|
18
18
|
pycoze/ui/base.py,sha256=nXNXRTZ5Tl1AQp5nfjzLvOVzt_1nLSCn2IOyfxAN_fc,1471
|
19
19
|
pycoze/ui/color.py,sha256=cT9Ib8uNzkOKxyW0IwVj46o4LwdB1xgNCj1_Rou9d_4,854
|
20
20
|
pycoze/ui/typ.py,sha256=NpT0FrbHvByOszBZMFtroRp7I7pN-38tYz_zPOPejF4,1723
|
21
|
-
pycoze/ui/ui_def.py,sha256=
|
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.62.dist-info/LICENSE,sha256=QStd_Qsd0-kAam_-sOesCIp_uKrGWeoKwt9M49NVkNU,1090
|
26
|
+
pycoze-0.1.62.dist-info/METADATA,sha256=dAe7QqqPLtozZulDRPv1bL_hPbZ3fjLyvDG7ywniPdU,719
|
27
|
+
pycoze-0.1.62.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
28
|
+
pycoze-0.1.62.dist-info/top_level.txt,sha256=76dPeDhKvOCleL3ZC5gl1-y4vdS1tT_U1hxWVAn7sFo,7
|
29
|
+
pycoze-0.1.62.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|