sunholo 0.61.0__py3-none-any.whl → 0.61.4__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/agents/chat_history.py +1 -1
- sunholo/components/vectorstore.py +1 -1
- sunholo/utils/config.py +6 -17
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/METADATA +2 -2
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/RECORD +9 -9
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/LICENSE.txt +0 -0
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/WHEEL +0 -0
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/entry_points.txt +0 -0
- {sunholo-0.61.0.dist-info → sunholo-0.61.4.dist-info}/top_level.txt +0 -0
sunholo/agents/chat_history.py
CHANGED
|
@@ -74,7 +74,7 @@ def embeds_to_json(message: dict):
|
|
|
74
74
|
# Output: '[{"type": "image", "url": "https://example.com/image.png"}]'
|
|
75
75
|
```
|
|
76
76
|
"""
|
|
77
|
-
if len(message['embeds'] > 0
|
|
77
|
+
if 'embeds' in message and len(message['embeds']) > 0:
|
|
78
78
|
return json.dumps(message.get("embeds"))
|
|
79
79
|
else:
|
|
80
80
|
return ""
|
|
@@ -45,7 +45,7 @@ def pick_vectorstore(vs_str, vector_name, embeddings, read_only=None):
|
|
|
45
45
|
return vectorstore
|
|
46
46
|
|
|
47
47
|
elif vs_str == 'cloudsql' or vs_str == 'postgres':
|
|
48
|
-
from
|
|
48
|
+
from langchain_community.vectorstores import PGVector
|
|
49
49
|
|
|
50
50
|
log.debug("Inititaing CloudSQL/Postgres pgvector")
|
|
51
51
|
#setup_cloudsql(vector_name)
|
sunholo/utils/config.py
CHANGED
|
@@ -75,7 +75,7 @@ def load_all_configs():
|
|
|
75
75
|
if filename in config_cache:
|
|
76
76
|
cached_config, cache_time = config_cache[filename]
|
|
77
77
|
if (current_time - cache_time) < timedelta(minutes=5):
|
|
78
|
-
log.
|
|
78
|
+
log.debug(f"Returning cached config for {filename}")
|
|
79
79
|
config = cached_config
|
|
80
80
|
else:
|
|
81
81
|
config = reload_config_file(config_file, filename)
|
|
@@ -167,7 +167,7 @@ def load_config(filename: str=None) -> tuple[dict, str]:
|
|
|
167
167
|
|
|
168
168
|
return config, filename
|
|
169
169
|
|
|
170
|
-
def load_config_key(key: str, vector_name: str, kind: str
|
|
170
|
+
def load_config_key(key: str, vector_name: str, kind: str):
|
|
171
171
|
"""
|
|
172
172
|
Load a specific key from a configuration file.
|
|
173
173
|
|
|
@@ -192,27 +192,16 @@ def load_config_key(key: str, vector_name: str, kind: str=None):
|
|
|
192
192
|
|
|
193
193
|
configs_by_kind = load_all_configs()
|
|
194
194
|
|
|
195
|
-
|
|
196
|
-
log.debug(f"Got kind: {kind} - applying to configs")
|
|
195
|
+
log.debug(f"Got kind: {kind} - applying to configs")
|
|
197
196
|
|
|
198
197
|
if not configs_by_kind:
|
|
199
198
|
log.warning("Did not load configs via folder")
|
|
200
199
|
|
|
201
|
-
|
|
202
|
-
config = configs_by_kind[kind]
|
|
203
|
-
filename = kind
|
|
204
|
-
else:
|
|
205
|
-
config, filename = load_config(filename)
|
|
200
|
+
config = configs_by_kind[kind]
|
|
206
201
|
|
|
207
|
-
log.debug(f"Fetching '{key}' for '{vector_name}'")
|
|
208
202
|
apiVersion = config.get('apiVersion')
|
|
209
|
-
kind = config.get('kind')
|
|
210
|
-
vac = config.get('vac')
|
|
211
203
|
|
|
212
|
-
|
|
213
|
-
raise ValueError("Deprecated config file, move to config with `apiVersion` and `kind` set")
|
|
214
|
-
|
|
215
|
-
log.debug(f"Loaded config file {kind}/{apiVersion}")
|
|
204
|
+
log.debug(f"Fetching '{key}' for '{vector_name}' from '{kind}/{apiVersion}'")
|
|
216
205
|
|
|
217
206
|
if kind == 'vacConfig':
|
|
218
207
|
if vector_name == 'global':
|
|
@@ -226,7 +215,7 @@ def load_config_key(key: str, vector_name: str, kind: str=None):
|
|
|
226
215
|
raise ValueError("Deprecated config file, move to config with `vac:` at top level for `vector_name`")
|
|
227
216
|
vac_config = vac.get(vector_name)
|
|
228
217
|
if not vac_config:
|
|
229
|
-
raise ValueError(f"No config array was found for {vector_name} in {
|
|
218
|
+
raise ValueError(f"No config array was found for {vector_name} in {kind}")
|
|
230
219
|
|
|
231
220
|
log.debug(f'vac_config: {vac_config} for {vector_name} - fetching "{key}"')
|
|
232
221
|
key_value = vac_config.get(key)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sunholo
|
|
3
|
-
Version: 0.61.
|
|
3
|
+
Version: 0.61.4
|
|
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.61.
|
|
6
|
+
Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.61.4.tar.gz
|
|
7
7
|
Author: Holosun ApS
|
|
8
8
|
Author-email: multivac@sunholo.com
|
|
9
9
|
License: Apache License, Version 2.0
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
sunholo/__init__.py,sha256=0CdpufyRKWyZe7J7UKigL6j_qOorM-p0OjHIAuf9M38,864
|
|
2
2
|
sunholo/logging.py,sha256=1jzfy4q9h5DNG4MjwtbTiM8keZxymlrZ0gDQEtGLMHY,11400
|
|
3
3
|
sunholo/agents/__init__.py,sha256=CnlbVohPt-Doth9PyROSlN3P8xMV9j9yS19YE-wCS90,341
|
|
4
|
-
sunholo/agents/chat_history.py,sha256=
|
|
4
|
+
sunholo/agents/chat_history.py,sha256=bkII7PNEbGCaobu2Rnr2rM9dim3BCK0kM-tiWhoI1tw,5219
|
|
5
5
|
sunholo/agents/dispatch_to_qa.py,sha256=h5qbcPqJ5JGa21T8Z5is7jbn4eG3P4xULLj_X25q3WM,8208
|
|
6
6
|
sunholo/agents/langserve.py,sha256=FdhQjorAY2bMn2rpuabNT6bU3uqSKWrl8DjpH3L_V7k,4375
|
|
7
7
|
sunholo/agents/pubsub.py,sha256=5hbbhbBGyVWRpt2sAGC5FEheYH1mCCwVUhZEB1S7vGg,1337
|
|
@@ -43,7 +43,7 @@ sunholo/components/__init__.py,sha256=RJGNEihwvRIiDScKis04RHJv4yZGI1UpXlOmuCptNZ
|
|
|
43
43
|
sunholo/components/llm.py,sha256=T4we3tGmqUj4tPwxQr9M6AXv_BALqZV_dRSvINan-oU,10374
|
|
44
44
|
sunholo/components/prompt.py,sha256=eZSghXkIlRzXiSrzgkG7e5ytUYq6R6LV-qjHU8jStig,6353
|
|
45
45
|
sunholo/components/retriever.py,sha256=_Lyt9RIgb2PD-rhV6oKAadiUs3ukT5uAYGW197tEskw,3755
|
|
46
|
-
sunholo/components/vectorstore.py,sha256=
|
|
46
|
+
sunholo/components/vectorstore.py,sha256=lB8vx_N6eBA44orNeVo1WRn0Q8GCIjvPPT9AfiPWBWE,5620
|
|
47
47
|
sunholo/database/__init__.py,sha256=Zz0Shcq-CtStf9rJGIYB_Ybzb8rY_Q9mfSj-nviM490,241
|
|
48
48
|
sunholo/database/alloydb.py,sha256=0zRLyeC9nACzj3v36ET9NqLeuzdwBJ2bE09CzgVTTFM,17098
|
|
49
49
|
sunholo/database/database.py,sha256=doY05kG8BZBLL-arh4hq5ef1ouWOtGHqdsDc6M2YHgk,7345
|
|
@@ -88,16 +88,16 @@ sunholo/summarise/__init__.py,sha256=MZk3dblUMODcPb1crq4v-Z508NrFIpkSWNf9FIO8BcU
|
|
|
88
88
|
sunholo/summarise/summarise.py,sha256=C3HhjepTjUhUC8FLk4jMQIBvq1BcORniwuTFHjPVhVo,3784
|
|
89
89
|
sunholo/utils/__init__.py,sha256=G11nN_6ATjxpuMfG_BvcUr9UU8onPIgkpTK6CjOcbr8,48
|
|
90
90
|
sunholo/utils/big_context.py,sha256=gJIP7_ZL-YSLhOMq8jmFTMqH1wq8eB1NK7oKPeZAq2s,5578
|
|
91
|
-
sunholo/utils/config.py,sha256=
|
|
91
|
+
sunholo/utils/config.py,sha256=M755G2VGVsfRvGBv2hM18KzFiSf5lJ6wj3ncDBCvWtg,8215
|
|
92
92
|
sunholo/utils/config_schema.py,sha256=Wv-ncitzljOhgbDaq9qnFqH5LCuxNv59dTGDWgd1qdk,4189
|
|
93
93
|
sunholo/utils/gcp.py,sha256=B2G1YKjeD7X9dqO86Jrp2vPuFwZ223Xl5Tg09Ndw-oc,5760
|
|
94
94
|
sunholo/utils/parsers.py,sha256=OrHmASqIbI45atVOhiGodgLvnfrzkvVzyHnSvAXD89I,3841
|
|
95
95
|
sunholo/utils/user_ids.py,sha256=SQd5_H7FE7vcTZp9AQuQDWBXd4FEEd7TeVMQe1H4Ny8,292
|
|
96
96
|
sunholo/vertex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
97
|
sunholo/vertex/init_vertex.py,sha256=JDMUaBRdednzbKF-5p33qqLit2LMsvgvWW-NRz0AqO0,1801
|
|
98
|
-
sunholo-0.61.
|
|
99
|
-
sunholo-0.61.
|
|
100
|
-
sunholo-0.61.
|
|
101
|
-
sunholo-0.61.
|
|
102
|
-
sunholo-0.61.
|
|
103
|
-
sunholo-0.61.
|
|
98
|
+
sunholo-0.61.4.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
|
|
99
|
+
sunholo-0.61.4.dist-info/METADATA,sha256=fNJFynKc9QQ-n26UaiizHapEY9hWrt-imjk3WBxlJqs,8057
|
|
100
|
+
sunholo-0.61.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
101
|
+
sunholo-0.61.4.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
|
|
102
|
+
sunholo-0.61.4.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
|
|
103
|
+
sunholo-0.61.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|