sunholo 0.59.3__py3-none-any.whl → 0.59.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/dispatch_to_qa.py +2 -2
- sunholo/agents/route.py +4 -4
- sunholo/agents/special_commands.py +2 -3
- sunholo/auth/run.py +1 -1
- sunholo/chunker/doc_handling.py +2 -2
- sunholo/chunker/splitter.py +1 -1
- sunholo/components/retriever.py +2 -2
- sunholo/database/alloydb.py +1 -1
- sunholo/database/database.py +3 -3
- sunholo/llamaindex/import_files.py +4 -4
- sunholo/streaming/streaming.py +4 -4
- sunholo/utils/config.py +2 -6
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/METADATA +2 -2
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/RECORD +18 -18
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/LICENSE.txt +0 -0
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/WHEEL +0 -0
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/entry_points.txt +0 -0
- {sunholo-0.59.3.dist-info → sunholo-0.59.4.dist-info}/top_level.txt +0 -0
sunholo/agents/dispatch_to_qa.py
CHANGED
|
@@ -49,8 +49,8 @@ def prep_request_payload(user_input, chat_history, vector_name, stream, **kwargs
|
|
|
49
49
|
# Add chat_history/vector_name to kwargs so langserve can use them too
|
|
50
50
|
kwargs['chat_history'] = chat_history
|
|
51
51
|
|
|
52
|
-
agent = load_config_key("agent", vector_name=vector_name,
|
|
53
|
-
agent_type = load_config_key("agent_type", vector_name=vector_name,
|
|
52
|
+
agent = load_config_key("agent", vector_name=vector_name, kind="vacConfig")
|
|
53
|
+
agent_type = load_config_key("agent_type", vector_name=vector_name, kind="vacConfig")
|
|
54
54
|
|
|
55
55
|
# {'stream': '', 'invoke': ''}
|
|
56
56
|
endpoints = route_endpoint(vector_name)
|
sunholo/agents/route.py
CHANGED
|
@@ -16,12 +16,12 @@ from ..utils import load_config_key, load_config
|
|
|
16
16
|
|
|
17
17
|
def route_qna(vector_name):
|
|
18
18
|
|
|
19
|
-
agent_url = load_config_key('agent_url', vector_name=vector_name,
|
|
19
|
+
agent_url = load_config_key('agent_url', vector_name=vector_name, kind="vacConfig")
|
|
20
20
|
if agent_url:
|
|
21
21
|
log.info('agent_url found in llm_config.yaml')
|
|
22
22
|
return agent_url
|
|
23
23
|
|
|
24
|
-
agent = load_config_key('agent', vector_name,
|
|
24
|
+
agent = load_config_key('agent', vector_name, kind="vacConfig")
|
|
25
25
|
log.info(f'agent_type: {agent}')
|
|
26
26
|
|
|
27
27
|
agent_route, _ = load_config('config/cloud_run_urls.json')
|
|
@@ -37,9 +37,9 @@ def route_qna(vector_name):
|
|
|
37
37
|
|
|
38
38
|
def route_endpoint(vector_name):
|
|
39
39
|
|
|
40
|
-
agent_type = load_config_key('agent_type', vector_name,
|
|
40
|
+
agent_type = load_config_key('agent_type', vector_name, kind="vacConfig")
|
|
41
41
|
if not agent_type:
|
|
42
|
-
agent_type = load_config_key('agent', vector_name,
|
|
42
|
+
agent_type = load_config_key('agent', vector_name, kind="vacConfig")
|
|
43
43
|
|
|
44
44
|
stem = route_qna(vector_name)
|
|
45
45
|
|
|
@@ -41,14 +41,13 @@ def handle_special_commands(user_input,
|
|
|
41
41
|
vector_name,
|
|
42
42
|
chat_history,
|
|
43
43
|
bucket=None,
|
|
44
|
-
cmds=None
|
|
45
|
-
config_file="config/llm_config.yaml"):
|
|
44
|
+
cmds=None):
|
|
46
45
|
now = datetime.datetime.now()
|
|
47
46
|
hourmin = now.strftime("%H%M%S")
|
|
48
47
|
the_datetime = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
|
|
49
48
|
|
|
50
49
|
if not cmds:
|
|
51
|
-
cmds = load_config_key("user_special_cmds", vector_name=vector_name,
|
|
50
|
+
cmds = load_config_key("user_special_cmds", vector_name=vector_name, kind="vacConfig")
|
|
52
51
|
if not cmds:
|
|
53
52
|
return None
|
|
54
53
|
|
sunholo/auth/run.py
CHANGED
|
@@ -15,7 +15,7 @@ def get_run_url(vector_name=None):
|
|
|
15
15
|
cloud_urls = route_qna(vector_name)
|
|
16
16
|
|
|
17
17
|
cloud_urls, _ = load_config('config/cloud_run_urls.json')
|
|
18
|
-
agent = load_config_key("agent", vector_name=vector_name,
|
|
18
|
+
agent = load_config_key("agent", vector_name=vector_name, kind="vacConfig")
|
|
19
19
|
|
|
20
20
|
try:
|
|
21
21
|
log.info(f'Looking up URL for {agent}')
|
sunholo/chunker/doc_handling.py
CHANGED
|
@@ -21,7 +21,7 @@ def send_doc_to_docstore(docs, vector_name):
|
|
|
21
21
|
|
|
22
22
|
# docs all come from the same file but got split into a list of document objects
|
|
23
23
|
|
|
24
|
-
docstore_config = load_config_key("docstore", vector_name=vector_name,
|
|
24
|
+
docstore_config = load_config_key("docstore", vector_name=vector_name, kind="vacConfig")
|
|
25
25
|
if docstore_config is None:
|
|
26
26
|
log.info(f"No docstore config found for {vector_name} ")
|
|
27
27
|
|
|
@@ -110,7 +110,7 @@ def summarise_docs(docs, vector_name, summary_threshold_default=10000, model_lim
|
|
|
110
110
|
if not docs:
|
|
111
111
|
return None
|
|
112
112
|
|
|
113
|
-
chunker_config = load_config_key("chunker", vector_name=vector_name,
|
|
113
|
+
chunker_config = load_config_key("chunker", vector_name=vector_name, kind="vacConfig")
|
|
114
114
|
summarise_chunking_config = chunker_config.get("summarise") if chunker_config else None
|
|
115
115
|
|
|
116
116
|
if not summarise_chunking_config:
|
sunholo/chunker/splitter.py
CHANGED
|
@@ -114,7 +114,7 @@ def choose_splitter(extension: str, chunk_size: int=1024, chunk_overlap:int=200,
|
|
|
114
114
|
if vector_name:
|
|
115
115
|
# check if there is a chunking configuration
|
|
116
116
|
from ..utils import load_config_key
|
|
117
|
-
chunk_config = load_config_key("chunker", vector_name=vector_name,
|
|
117
|
+
chunk_config = load_config_key("chunker", vector_name=vector_name, kind="vacConfig")
|
|
118
118
|
if chunk_config:
|
|
119
119
|
if chunk_config.get("type") == "semantic":
|
|
120
120
|
embedding_str = chunk_config.get("llm")
|
sunholo/components/retriever.py
CHANGED
|
@@ -27,7 +27,7 @@ from langchain.retrievers import ContextualCompressionRetriever
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
def load_memories(vector_name):
|
|
30
|
-
memories = load_config_key("memory", vector_name,
|
|
30
|
+
memories = load_config_key("memory", vector_name, kind="vacConfig")
|
|
31
31
|
log.info(f"Found memory settings for {vector_name}: {memories}")
|
|
32
32
|
if len(memories) == 0:
|
|
33
33
|
log.info(f"No memory settings found for {vector_name}")
|
|
@@ -70,7 +70,7 @@ def pick_retriever(vector_name, embeddings=None):
|
|
|
70
70
|
log.info(f"No retrievers were created for {memories}")
|
|
71
71
|
return None
|
|
72
72
|
|
|
73
|
-
k_override = load_config_key("memory_k", vector_name,
|
|
73
|
+
k_override = load_config_key("memory_k", vector_name, kind="vacConfig")
|
|
74
74
|
if not k_override:
|
|
75
75
|
k_override = 3
|
|
76
76
|
|
sunholo/database/alloydb.py
CHANGED
sunholo/database/database.py
CHANGED
|
@@ -48,16 +48,16 @@ def lookup_connection_env(vs_str):
|
|
|
48
48
|
raise ValueError("Could not find vectorstore for {vs_str}")
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
def get_vector_size(vector_name: str
|
|
51
|
+
def get_vector_size(vector_name: str):
|
|
52
52
|
|
|
53
53
|
llm_str = None
|
|
54
|
-
embed_dict = load_config_key("embedder", vector_name,
|
|
54
|
+
embed_dict = load_config_key("embedder", vector_name, kind="vacConfig")
|
|
55
55
|
|
|
56
56
|
if embed_dict:
|
|
57
57
|
llm_str = embed_dict.get('llm')
|
|
58
58
|
|
|
59
59
|
if llm_str is None:
|
|
60
|
-
llm_str = load_config_key("llm", vector_name,
|
|
60
|
+
llm_str = load_config_key("llm", vector_name, kind="vacConfig")
|
|
61
61
|
|
|
62
62
|
if not isinstance(llm_str, str):
|
|
63
63
|
raise ValueError(f"get_vector_size() did not return a value string for {vector_name} - got {llm_str} instead")
|
|
@@ -102,7 +102,7 @@ def do_llamaindex(message_data, metadata, vector_name):
|
|
|
102
102
|
if not rag:
|
|
103
103
|
raise ValueError("Need to install vertexai module via `pip install sunholo[gcp]`")
|
|
104
104
|
|
|
105
|
-
gcp_config = load_config_key("gcp_config", vector_name=vector_name,
|
|
105
|
+
gcp_config = load_config_key("gcp_config", vector_name=vector_name, kind="vacConfig")
|
|
106
106
|
if not gcp_config:
|
|
107
107
|
raise ValueError(f"Need config.{vector_name}.gcp_config to configure llamaindex on VertexAI")
|
|
108
108
|
|
|
@@ -120,7 +120,7 @@ def do_llamaindex(message_data, metadata, vector_name):
|
|
|
120
120
|
log.info(f"Found llamaindex corpus: {corpus}")
|
|
121
121
|
|
|
122
122
|
# native support for cloud storage and drive links
|
|
123
|
-
chunker_config = load_config_key("chunker", vector_name=vector_name,
|
|
123
|
+
chunker_config = load_config_key("chunker", vector_name=vector_name, kind="vacConfig")
|
|
124
124
|
|
|
125
125
|
if message_data.startswith("gs://") or message_data.startswith("https://drive.google.com"):
|
|
126
126
|
log.info(f"rag.import_files for {message_data}")
|
|
@@ -160,7 +160,7 @@ def do_llamaindex(message_data, metadata, vector_name):
|
|
|
160
160
|
#)
|
|
161
161
|
|
|
162
162
|
def check_llamaindex_in_memory(vector_name):
|
|
163
|
-
memories = load_config_key("memory", vector_name=vector_name,
|
|
163
|
+
memories = load_config_key("memory", vector_name=vector_name, kind="vacConfig")
|
|
164
164
|
for memory in memories: # Iterate over the list
|
|
165
165
|
for key, value in memory.items(): # Now iterate over the dictionary
|
|
166
166
|
log.info(f"Found memory {key}")
|
|
@@ -175,7 +175,7 @@ def check_llamaindex_in_memory(vector_name):
|
|
|
175
175
|
|
|
176
176
|
def llamaindex_chunker_check(message_data, metadata, vector_name):
|
|
177
177
|
# llamaindex handles its own chunking/embedding
|
|
178
|
-
memories = load_config_key("memory", vector_name=vector_name,
|
|
178
|
+
memories = load_config_key("memory", vector_name=vector_name, kind="vacConfig")
|
|
179
179
|
total_memories = len(memories)
|
|
180
180
|
llama = None
|
|
181
181
|
if check_llamaindex_in_memory(vector_name):
|
sunholo/streaming/streaming.py
CHANGED
|
@@ -248,8 +248,8 @@ def generate_proxy_stream(stream_to_f, user_input, vector_name, chat_history, ge
|
|
|
248
248
|
):
|
|
249
249
|
print(output) # Process each streaming output chunk
|
|
250
250
|
"""
|
|
251
|
-
agent = load_config_key("agent", vector_name=vector_name,
|
|
252
|
-
agent_type = load_config_key("agent_type", vector_name=vector_name,
|
|
251
|
+
agent = load_config_key("agent", vector_name=vector_name, kind="vacConfig")
|
|
252
|
+
agent_type = load_config_key("agent_type", vector_name=vector_name, kind="vacConfig")
|
|
253
253
|
|
|
254
254
|
def generate():
|
|
255
255
|
json_buffer = ""
|
|
@@ -306,8 +306,8 @@ async def generate_proxy_stream_async(stream_to_f, user_input, vector_name, chat
|
|
|
306
306
|
):
|
|
307
307
|
print(output) # Process each streaming output chunk
|
|
308
308
|
"""
|
|
309
|
-
agent = load_config_key("agent", vector_name=vector_name,
|
|
310
|
-
agent_type = load_config_key("agent_type", vector_name=vector_name,
|
|
309
|
+
agent = load_config_key("agent", vector_name=vector_name, kind="vacConfig")
|
|
310
|
+
agent_type = load_config_key("agent_type", vector_name=vector_name, kind="vacConfig")
|
|
311
311
|
|
|
312
312
|
async def generate():
|
|
313
313
|
json_buffer = ""
|
sunholo/utils/config.py
CHANGED
|
@@ -167,14 +167,13 @@ 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,
|
|
170
|
+
def load_config_key(key: str, vector_name: str, kind: str=None):
|
|
171
171
|
"""
|
|
172
172
|
Load a specific key from a configuration file.
|
|
173
173
|
|
|
174
174
|
Args:
|
|
175
175
|
key (str): The key to fetch from the configuration.
|
|
176
176
|
vector_name (str): The name of the vector in the configuration file.
|
|
177
|
-
filename (str, optional): The configuration file name. Defaults to the `_CONFIG_FILE` environment variable. Deprecated - use 'kind' instead
|
|
178
177
|
kind: (str, optional): Specify the type of configuration to retrieve e.g. 'vacConfig' which will pick from files within `_CONFIG_FOLDER`
|
|
179
178
|
|
|
180
179
|
Returns:
|
|
@@ -182,7 +181,7 @@ def load_config_key(key: str, vector_name: str, filename: str=None, kind: str=No
|
|
|
182
181
|
|
|
183
182
|
Example:
|
|
184
183
|
```python
|
|
185
|
-
api_url = load_config_key('apiUrl', 'myVector',
|
|
184
|
+
api_url = load_config_key('apiUrl', 'myVector', kind="vacConfig")
|
|
186
185
|
print(f'API URL: {api_url}')
|
|
187
186
|
```
|
|
188
187
|
"""
|
|
@@ -197,9 +196,6 @@ def load_config_key(key: str, vector_name: str, filename: str=None, kind: str=No
|
|
|
197
196
|
if kind:
|
|
198
197
|
log.info(f"Got kind: {kind} - applying to configs")
|
|
199
198
|
|
|
200
|
-
if filename:
|
|
201
|
-
log.warning(f"Got filename argument: {filename} for config - deprecated - use `kind='vacConfig'` instead")
|
|
202
|
-
|
|
203
199
|
if not configs_by_kind:
|
|
204
200
|
log.warning("Did not load configs via folder")
|
|
205
201
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sunholo
|
|
3
|
-
Version: 0.59.
|
|
3
|
+
Version: 0.59.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.59.
|
|
6
|
+
Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.59.4.tar.gz
|
|
7
7
|
Author: Holosun ApS
|
|
8
8
|
Author-email: multivac@sunholo.com
|
|
9
9
|
License: Apache License, Version 2.0
|
|
@@ -2,11 +2,11 @@ sunholo/__init__.py,sha256=KfqJV0T-2WCIlabNxeX3CvLS-bBGCl9n5aWy091lr2M,841
|
|
|
2
2
|
sunholo/logging.py,sha256=JSzS_6HY6BIxy8bmVV2TDHXOjyfB1q5nI76OZXAtQDc,11372
|
|
3
3
|
sunholo/agents/__init__.py,sha256=CnlbVohPt-Doth9PyROSlN3P8xMV9j9yS19YE-wCS90,341
|
|
4
4
|
sunholo/agents/chat_history.py,sha256=PbwYmw1TwzI8H-cwQIGgHZ6UIr2Qb-JWow0RG3ayLM8,5195
|
|
5
|
-
sunholo/agents/dispatch_to_qa.py,sha256=
|
|
5
|
+
sunholo/agents/dispatch_to_qa.py,sha256=WhiDk3UYnfq3CVb11k2f0TeS7OHsolE9h4Cq_8EJ0hY,8022
|
|
6
6
|
sunholo/agents/langserve.py,sha256=FdhQjorAY2bMn2rpuabNT6bU3uqSKWrl8DjpH3L_V7k,4375
|
|
7
7
|
sunholo/agents/pubsub.py,sha256=5hbbhbBGyVWRpt2sAGC5FEheYH1mCCwVUhZEB1S7vGg,1337
|
|
8
|
-
sunholo/agents/route.py,sha256=
|
|
9
|
-
sunholo/agents/special_commands.py,sha256=
|
|
8
|
+
sunholo/agents/route.py,sha256=IkSFnzU6kkEn_V37pX1rzFPoQRCSNkA-cfIpPB6nwzY,2284
|
|
9
|
+
sunholo/agents/special_commands.py,sha256=PI4ADgFQvPDCeCpOeWIrD4bD432NYFeVcBBnkqTBWi8,6457
|
|
10
10
|
sunholo/agents/test_chat_history.py,sha256=vPbPu0xREEs4J4X_zJKBY1f19Vy5yV05_CKfUUQqfFg,3923
|
|
11
11
|
sunholo/agents/fastapi/__init__.py,sha256=S_pj4_bTUmDGoq_exaREHlOKThi0zTuGT0VZY0YfODQ,88
|
|
12
12
|
sunholo/agents/fastapi/base.py,sha256=clk76cHbUAvU0OYJrRfCWX_5f0ACbhDsIzYBhI3wyoE,2514
|
|
@@ -17,20 +17,20 @@ sunholo/agents/flask/qna_routes.py,sha256=JLjYrVN2mGoWrGUM_o5N93um46gXpQa8LWdxjF
|
|
|
17
17
|
sunholo/archive/__init__.py,sha256=qNHWm5rGPVOlxZBZCpA1wTYPbalizRT7f8X4rs2t290,31
|
|
18
18
|
sunholo/archive/archive.py,sha256=C-UhG5x-XtZ8VheQp92IYJqgD0V3NFQjniqlit94t18,1197
|
|
19
19
|
sunholo/auth/__init__.py,sha256=4owDjSaWYkbTlPK47UHTOC0gCWbZsqn4ZIEw5NWZTlg,28
|
|
20
|
-
sunholo/auth/run.py,sha256=
|
|
20
|
+
sunholo/auth/run.py,sha256=oJ8JcimcDcdIogf7fvXLAi9EFIYhTR2_mjpR2-b97HE,2829
|
|
21
21
|
sunholo/bots/__init__.py,sha256=EMFd7e2z68l6pzYOnkzHbLd2xJRvxTKFRNCTuhZ8hIw,130
|
|
22
22
|
sunholo/bots/discord.py,sha256=cCFae5K1BCa6JVkWGLh_iZ9qFO1JpXb6K4eJrlDfEro,2442
|
|
23
23
|
sunholo/bots/github_webhook.py,sha256=5pQPRLM_wxxcILVaIzUDV8Kt7Arcm2dL1r1kMMHA524,9629
|
|
24
24
|
sunholo/bots/webapp.py,sha256=EIMxdAJ_xtufwJmvnn7N_Fb_1hZ9DjhJ0Kf_hp02vEU,1926
|
|
25
25
|
sunholo/chunker/__init__.py,sha256=UhQBZTKwDfBXm0TPv4LvsGc5pdUGCbYzi3qPTOkU4gw,55
|
|
26
26
|
sunholo/chunker/data_to_embed_pubsub.py,sha256=t-pWNYv2mnwVAkMcIOK2CrIb3yr2aS9iAdtryk7hT8o,2931
|
|
27
|
-
sunholo/chunker/doc_handling.py,sha256=
|
|
27
|
+
sunholo/chunker/doc_handling.py,sha256=rIyknpzDyj5A0u_DqSQVD_CXLRNZPOU6TCL4bhCdjOI,8563
|
|
28
28
|
sunholo/chunker/images.py,sha256=Xmh1vwHrVhoXm5iH2dhCc52O8YgdzE8KrDSdL-pGnp8,1861
|
|
29
29
|
sunholo/chunker/loaders.py,sha256=xiToUVgPz2ZzcqpUAq7aNP3PTenb_rBUAFzu0JPycIg,10268
|
|
30
30
|
sunholo/chunker/message_data.py,sha256=iDP94dySU3Xct-gWGnB4NNRSh2luQmgJeCfQb7ktt3U,6760
|
|
31
31
|
sunholo/chunker/pdfs.py,sha256=daCZ1xjn1YvxlifIyxskWNpLJLe-Q9D_Jq12MWx3tZo,2473
|
|
32
32
|
sunholo/chunker/publish.py,sha256=PoT8q3XJeFCg10WrLkYhuaaXIrGVkvUD3-R9IfoWoH4,2703
|
|
33
|
-
sunholo/chunker/splitter.py,sha256=
|
|
33
|
+
sunholo/chunker/splitter.py,sha256=FLkDhkePkg_zGQpFBK13Cznw575D-Rf9pcaCpc1HUxY,6726
|
|
34
34
|
sunholo/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
sunholo/cli/cli.py,sha256=rcO1hMthy5nWC_5sOHqRm7ut70c9JfxFTSjFRBNYuYg,1248
|
|
36
36
|
sunholo/cli/cli_init.py,sha256=WReZuMQwDfkRUvssYT7TirUoG6SiT1dTDol8nLI8O70,3418
|
|
@@ -39,11 +39,11 @@ sunholo/cli/deploy.py,sha256=zxdwUsRTRMC8U5vyRv0JiKBLFn84Ug_Tc88-_h9hJSs,1609
|
|
|
39
39
|
sunholo/components/__init__.py,sha256=RJGNEihwvRIiDScKis04RHJv4yZGI1UpXlOmuCptNZI,208
|
|
40
40
|
sunholo/components/llm.py,sha256=T4we3tGmqUj4tPwxQr9M6AXv_BALqZV_dRSvINan-oU,10374
|
|
41
41
|
sunholo/components/prompt.py,sha256=eZSghXkIlRzXiSrzgkG7e5ytUYq6R6LV-qjHU8jStig,6353
|
|
42
|
-
sunholo/components/retriever.py,sha256=
|
|
42
|
+
sunholo/components/retriever.py,sha256=AxTg0QLR2E74FPbBrqB-ap8CTRK4gBOJnpqUk1CWSkY,3684
|
|
43
43
|
sunholo/components/vectorstore.py,sha256=RB_Dgc9234G_TE3w3abCfBw1pqm2br2RrLP0UqshkvA,5172
|
|
44
44
|
sunholo/database/__init__.py,sha256=Zz0Shcq-CtStf9rJGIYB_Ybzb8rY_Q9mfSj-nviM490,241
|
|
45
|
-
sunholo/database/alloydb.py,sha256=
|
|
46
|
-
sunholo/database/database.py,sha256=
|
|
45
|
+
sunholo/database/alloydb.py,sha256=bVDz9CNdJ-KFu699u8-CPdOXpXooqwik6GwekBrO2WY,14858
|
|
46
|
+
sunholo/database/database.py,sha256=doY05kG8BZBLL-arh4hq5ef1ouWOtGHqdsDc6M2YHgk,7345
|
|
47
47
|
sunholo/database/lancedb.py,sha256=WSrbY5mgyeXx6i7UBiz4YQ_i5UIYVYFo-vPGO72bQKY,707
|
|
48
48
|
sunholo/database/static_dbs.py,sha256=aOyU3AJ-Dzz3qSNjbuN2293cfYw5PhkcQuQxdwPMJ4w,435
|
|
49
49
|
sunholo/database/uuid.py,sha256=GtUL_uq80u2xkozPF9kwNpvhBf03hbZR3xUhO3NomBM,237
|
|
@@ -64,7 +64,7 @@ sunholo/langfuse/callback.py,sha256=G9xcZHpLvyzolU57ycItLaooMCtRuM37QJSWjiwQEd0,
|
|
|
64
64
|
sunholo/langfuse/prompts.py,sha256=HO4Zy9usn5tKooBPCKksuw4Lff3c03Ny5wqn4ce_xZM,1217
|
|
65
65
|
sunholo/llamaindex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
66
|
sunholo/llamaindex/generate.py,sha256=l1Picr-hVwkmAUD7XmTCa63qY9ERliFHQXwyX3BqB2Q,686
|
|
67
|
-
sunholo/llamaindex/import_files.py,sha256=
|
|
67
|
+
sunholo/llamaindex/import_files.py,sha256=0K6uWkXwE54-48sawaW-TNxF8eU9L7-_6pLeTmViRmQ,7786
|
|
68
68
|
sunholo/lookup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
sunholo/lookup/model_lookup.yaml,sha256=O7o-jP53MLA06C8pI-ILwERShO-xf6z_258wtpZBv6A,739
|
|
70
70
|
sunholo/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -80,20 +80,20 @@ sunholo/qna/retry.py,sha256=gFgOf9AxrZMIO9OwOYu1EW7rhNhyfnw_o4XAsNLBOVQ,2021
|
|
|
80
80
|
sunholo/streaming/__init__.py,sha256=k8dBqhzyS1Oi6NfADtRtWfnPtU1FU2kQz-YxH9yrNeQ,197
|
|
81
81
|
sunholo/streaming/content_buffer.py,sha256=fWcg0oTf470M3U40VAChfmHmWRFgRD8VaT90jNfBCH0,6455
|
|
82
82
|
sunholo/streaming/langserve.py,sha256=6isOvFwZBfmiQY5N41PYPyrdJj9IgJXXHLfTzPvewGw,6299
|
|
83
|
-
sunholo/streaming/streaming.py,sha256=
|
|
83
|
+
sunholo/streaming/streaming.py,sha256=9z6pXINEopuL_Z1RnmgXAoZJum9dzyuOxqYtEYnjf8w,16405
|
|
84
84
|
sunholo/summarise/__init__.py,sha256=MZk3dblUMODcPb1crq4v-Z508NrFIpkSWNf9FIO8BcU,38
|
|
85
85
|
sunholo/summarise/summarise.py,sha256=C3HhjepTjUhUC8FLk4jMQIBvq1BcORniwuTFHjPVhVo,3784
|
|
86
86
|
sunholo/utils/__init__.py,sha256=G11nN_6ATjxpuMfG_BvcUr9UU8onPIgkpTK6CjOcbr8,48
|
|
87
87
|
sunholo/utils/big_context.py,sha256=qHYtds4Ecf9eZRHVqXho4_q8Je7HD44-vS6RJ6s9Z0Q,5387
|
|
88
|
-
sunholo/utils/config.py,sha256=
|
|
88
|
+
sunholo/utils/config.py,sha256=WIcJstLkQsM8iMCl_GBpgYdrSWIcnnCJ_uOFHIQX1g8,8500
|
|
89
89
|
sunholo/utils/config_schema.py,sha256=Rkw5nVHcCtIQH_sH5ZUiDaxW1TOjUmzsDwHhrfiWeqQ,3829
|
|
90
90
|
sunholo/utils/gcp.py,sha256=B2G1YKjeD7X9dqO86Jrp2vPuFwZ223Xl5Tg09Ndw-oc,5760
|
|
91
91
|
sunholo/utils/parsers.py,sha256=OrHmASqIbI45atVOhiGodgLvnfrzkvVzyHnSvAXD89I,3841
|
|
92
92
|
sunholo/vertex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
93
|
sunholo/vertex/init_vertex.py,sha256=JDMUaBRdednzbKF-5p33qqLit2LMsvgvWW-NRz0AqO0,1801
|
|
94
|
-
sunholo-0.59.
|
|
95
|
-
sunholo-0.59.
|
|
96
|
-
sunholo-0.59.
|
|
97
|
-
sunholo-0.59.
|
|
98
|
-
sunholo-0.59.
|
|
99
|
-
sunholo-0.59.
|
|
94
|
+
sunholo-0.59.4.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
|
|
95
|
+
sunholo-0.59.4.dist-info/METADATA,sha256=nlndIu6G7iL7iMWQDt4oxJ_wkpcNp95qx_JEysrA_BU,7903
|
|
96
|
+
sunholo-0.59.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
97
|
+
sunholo-0.59.4.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
|
|
98
|
+
sunholo-0.59.4.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
|
|
99
|
+
sunholo-0.59.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|