sunholo 0.69.15__py3-none-any.whl → 0.69.16__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.
- sunholo/utils/parsers.py +16 -1
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/METADATA +2 -2
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/RECORD +7 -7
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/LICENSE.txt +0 -0
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/WHEEL +0 -0
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/entry_points.txt +0 -0
- {sunholo-0.69.15.dist-info → sunholo-0.69.16.dist-info}/top_level.txt +0 -0
sunholo/utils/parsers.py
CHANGED
|
@@ -136,4 +136,19 @@ def check_kwargs_support(func):
|
|
|
136
136
|
for param in sig.parameters.values():
|
|
137
137
|
if param.kind == param.VAR_KEYWORD:
|
|
138
138
|
return True
|
|
139
|
-
return False
|
|
139
|
+
return False
|
|
140
|
+
|
|
141
|
+
def escape_braces(text):
|
|
142
|
+
"""
|
|
143
|
+
Escapes single braces in the text by converting them to double braces.
|
|
144
|
+
|
|
145
|
+
Args:
|
|
146
|
+
text (str): The input string containing single braces.
|
|
147
|
+
|
|
148
|
+
Returns:
|
|
149
|
+
str: The modified string with single braces converted to double braces.
|
|
150
|
+
"""
|
|
151
|
+
# Replace single braces with double braces
|
|
152
|
+
text = re.sub(r'(?<!{){(?!{)', '{{', text) # Replace '{' with '{{' if not already double braced
|
|
153
|
+
text = re.sub(r'(?<!})}(?!})', '}}', text) # Replace '}' with '}}' if not already double braced
|
|
154
|
+
return text
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sunholo
|
|
3
|
-
Version: 0.69.
|
|
3
|
+
Version: 0.69.16
|
|
4
4
|
Summary: Large Language Model DevOps - a package to help deploy LLMs to the Cloud.
|
|
5
5
|
Home-page: https://github.com/sunholo-data/sunholo-py
|
|
6
|
-
Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.69.
|
|
6
|
+
Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.69.16.tar.gz
|
|
7
7
|
Author: Holosun ApS
|
|
8
8
|
Author-email: multivac@sunholo.com
|
|
9
9
|
License: Apache License, Version 2.0
|
|
@@ -103,7 +103,7 @@ sunholo/utils/config.py,sha256=5lzO9CkLpDslp66ZwSBC_95aA1FQs-zpiOLi5YaYWbM,8907
|
|
|
103
103
|
sunholo/utils/config_schema.py,sha256=Wv-ncitzljOhgbDaq9qnFqH5LCuxNv59dTGDWgd1qdk,4189
|
|
104
104
|
sunholo/utils/gcp.py,sha256=uueODEpA-P6O15-t0hmcGC9dONLO_hLfzSsSoQnkUss,4854
|
|
105
105
|
sunholo/utils/gcp_project.py,sha256=0ozs6tzI4qEvEeXb8MxLnCdEVoWKxlM6OH05htj7_tc,1325
|
|
106
|
-
sunholo/utils/parsers.py,sha256=
|
|
106
|
+
sunholo/utils/parsers.py,sha256=NEfH6ZIYfMa-nuVaYmq9KhS0MNAYoKDbxvibT5MvGqM,4403
|
|
107
107
|
sunholo/utils/timedelta.py,sha256=BbLabEx7_rbErj_YbNM0MBcaFN76DC4PTe4zD2ucezg,493
|
|
108
108
|
sunholo/utils/user_ids.py,sha256=SQd5_H7FE7vcTZp9AQuQDWBXd4FEEd7TeVMQe1H4Ny8,292
|
|
109
109
|
sunholo/utils/version.py,sha256=jjU_4anXBikJxPg0Wur0X-B7-ec1tC7jToykAnAG9Dg,108
|
|
@@ -111,9 +111,9 @@ sunholo/vertex/__init__.py,sha256=JvHcGFuv6R_nAhY2AdoqqhMpJ5ugeWPZ_svGhWrObBk,13
|
|
|
111
111
|
sunholo/vertex/init.py,sha256=JDMUaBRdednzbKF-5p33qqLit2LMsvgvWW-NRz0AqO0,1801
|
|
112
112
|
sunholo/vertex/memory_tools.py,sha256=8F1iTWnqEK9mX4W5RzCVKIjydIcNp6OFxjn_dtQ3GXo,5379
|
|
113
113
|
sunholo/vertex/safety.py,sha256=3meAX0HyGZYrH7rXPUAHxtI_3w_zoy_RX7Shtkoa660,1275
|
|
114
|
-
sunholo-0.69.
|
|
115
|
-
sunholo-0.69.
|
|
116
|
-
sunholo-0.69.
|
|
117
|
-
sunholo-0.69.
|
|
118
|
-
sunholo-0.69.
|
|
119
|
-
sunholo-0.69.
|
|
114
|
+
sunholo-0.69.16.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
|
|
115
|
+
sunholo-0.69.16.dist-info/METADATA,sha256=VHUSz1m6mWug70lj_pLHCxZFeMK72-xyE3xZqbtkxSQ,6242
|
|
116
|
+
sunholo-0.69.16.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
117
|
+
sunholo-0.69.16.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
|
|
118
|
+
sunholo-0.69.16.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
|
|
119
|
+
sunholo-0.69.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|