sunholo 0.71.17__py3-none-any.whl → 0.71.19__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/cli/chat_vac.py CHANGED
@@ -89,11 +89,17 @@ def stream_chat_session(service_url, service_name, stream=True):
89
89
  console.print("[bold red]Invalid file upload[/bold red]")
90
90
  continue
91
91
 
92
- console.print(f"[bold yellow]{service_name}:[/bold yellow] Uploaded {file_path} to {file_reply}", end='\n')
92
+ console.print(f"[bold yellow]{service_name}:[/bold yellow] Uploaded {file_path} to {file_reply} - image will be sent each reply until you issue 'clear_upload' ", end='\n')
93
93
 
94
94
  except FileNotFoundError:
95
95
  console.print("[bold red]File not found. Please check the path and try again.[/bold red]")
96
- continue
96
+
97
+ # file_reply stays for each message from now on
98
+ continue
99
+
100
+ if user_input.lower().startswith("clear_upload"):
101
+ console.print("[bold yellow]File upload path cleared.[/bold yellow]")
102
+ file_path = None
97
103
 
98
104
  if not stream:
99
105
  vac_response = send_to_qa(user_input,
@@ -133,7 +139,7 @@ def stream_chat_session(service_url, service_name, stream=True):
133
139
  stream_timeout=120,
134
140
  message_author=user_id,
135
141
  #TODO: populate these
136
- image_url=None,
142
+ image_url=file_reply,
137
143
  source_filters=None,
138
144
  search_kwargs=None,
139
145
  private_docs=None,
@@ -155,7 +161,7 @@ def stream_chat_session(service_url, service_name, stream=True):
155
161
  vac_response = ""
156
162
 
157
163
  # point or star?
158
- with console.status("[bold orange]Thinking...[/bold orange]", spinner="star") as status:
164
+ with console.status(f"[bold orange]Thinking...{file_reply}[/bold orange]", spinner="star") as status:
159
165
  for token in stream_response():
160
166
  if not response_started:
161
167
  status.stop()
@@ -160,9 +160,10 @@ class VertexAIExtensions:
160
160
  "fileOutputGcsBucket": f"{bucket_name}/extensions/output/",
161
161
  }
162
162
  }
163
+ log.info(f"Creating buckets with {runtime_config=}")
163
164
  else:
164
165
  runtime_config = {}
165
-
166
+
166
167
  extension_code_interpreter = extensions.Extension.from_hub("code_interpreter", runtime_config=runtime_config)
167
168
 
168
169
  # This field is only applicable when `file_output_gcs_bucket` is specified in `Extension.CodeInterpreterRuntimeConfig`.
@@ -187,8 +188,12 @@ class VertexAIExtensions:
187
188
  operation_id="generate_and_execute",
188
189
  operation_params=operation_params)
189
190
 
190
- self.CODE_INTERPRETER_WRITTEN_FILES.extend(
191
- [item['name'] for item in response['output_files']])
191
+ if 'output_files' in response:
192
+ self.CODE_INTERPRETER_WRITTEN_FILES.extend(
193
+ [item['name'] for item in response['output_files']])
194
+
195
+ if 'output_gcs_uris' in response:
196
+ self.CODE_INTERPRETER_WRITTEN_FILES.extend(response['output_gcs_uris'])
192
197
 
193
198
  if response.get('execution_error'):
194
199
  #TODO: setup iteration many times with a timeout
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sunholo
3
- Version: 0.71.17
3
+ Version: 0.71.19
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.71.17.tar.gz
6
+ Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.71.19.tar.gz
7
7
  Author: Holosun ApS
8
8
  Author-email: multivac@sunholo.com
9
9
  License: Apache License, Version 2.0
@@ -33,7 +33,7 @@ sunholo/chunker/pdfs.py,sha256=daCZ1xjn1YvxlifIyxskWNpLJLe-Q9D_Jq12MWx3tZo,2473
33
33
  sunholo/chunker/publish.py,sha256=tiO615A2uo_ZjzdFDzNH1PL_1kJeLMUQwLJ4w67rNIc,2932
34
34
  sunholo/chunker/splitter.py,sha256=jtGfi_ZdhVdyFhfw0e4ynEpmwIyrxQtV63OituYWy6o,6729
35
35
  sunholo/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- sunholo/cli/chat_vac.py,sha256=3XnfJEJXr-BaNsmvoOPlZsLXqcen4NKs5LP6THNoCzM,20069
36
+ sunholo/cli/chat_vac.py,sha256=8MEwhFafPugGWf9mzn7cFNVtalb31eaRuJJRqZOjynU,20379
37
37
  sunholo/cli/cli.py,sha256=8e00HBN6eYIUJ8cnvKteBJNn7aZPRMk4b82jwcGg9D4,3741
38
38
  sunholo/cli/cli_init.py,sha256=JMZ9AX2cPDZ-_mv3adiv2ToFVNyRPtjk9Biszl1kiR0,2358
39
39
  sunholo/cli/configs.py,sha256=QUM9DvKOdZmEQRM5uI3Nh887T0YDiSMr7O240zTLqws,4546
@@ -111,13 +111,13 @@ sunholo/utils/user_ids.py,sha256=SQd5_H7FE7vcTZp9AQuQDWBXd4FEEd7TeVMQe1H4Ny8,292
111
111
  sunholo/utils/version.py,sha256=P1QAJQdZfT2cMqdTSmXmcxrD2PssMPEGM-WI6083Fck,237
112
112
  sunholo/vertex/__init__.py,sha256=XH7FUKxdIgN9H2iDcWxL3sRnVHC3297G24RqEn4Ob0Y,240
113
113
  sunholo/vertex/extensions.py,sha256=d-Ikt9gHFf-jUMPmyU-xHwYe22QtEyr90Ua1LDKgTws,11026
114
- sunholo/vertex/extensions_class.py,sha256=jYWaOF7zNwcdZgI8CNolRvNa7BA2McgjBcpwZspKCWk,11964
114
+ sunholo/vertex/extensions_class.py,sha256=LBZ23a4Ze8GFEtKedOz7_ghAfz_X9ta_lsLKZv9Kycw,12211
115
115
  sunholo/vertex/init.py,sha256=-w7b9GKsyJnAJpYHYz6_zBUtmeJeLXlEkgOfwoe4DEI,2715
116
116
  sunholo/vertex/memory_tools.py,sha256=FLTbNX_YbpxxUxZHAsXEihlUgLELfLOfxsdEkwDm_GI,6546
117
117
  sunholo/vertex/safety.py,sha256=S9PgQT1O_BQAkcqauWncRJaydiP8Q_Jzmu9gxYfy1VA,2482
118
- sunholo-0.71.17.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
119
- sunholo-0.71.17.dist-info/METADATA,sha256=a1SosPFBZUDdFgpnGGNdg6D9j24uEpN1J37vkwq2Sxw,6767
120
- sunholo-0.71.17.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
121
- sunholo-0.71.17.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
122
- sunholo-0.71.17.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
123
- sunholo-0.71.17.dist-info/RECORD,,
118
+ sunholo-0.71.19.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
119
+ sunholo-0.71.19.dist-info/METADATA,sha256=9NUhawmqXuM4V76hMF1aS4NtlByGyaEbjkTfK9neTc4,6767
120
+ sunholo-0.71.19.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
121
+ sunholo-0.71.19.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
122
+ sunholo-0.71.19.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
123
+ sunholo-0.71.19.dist-info/RECORD,,