sunholo 0.71.18__py3-none-any.whl → 0.71.20__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
@@ -139,7 +139,7 @@ def stream_chat_session(service_url, service_name, stream=True):
139
139
  stream_timeout=120,
140
140
  message_author=user_id,
141
141
  #TODO: populate these
142
- image_url=None,
142
+ image_url=file_reply,
143
143
  source_filters=None,
144
144
  search_kwargs=None,
145
145
  private_docs=None,
@@ -161,7 +161,7 @@ def stream_chat_session(service_url, service_name, stream=True):
161
161
  vac_response = ""
162
162
 
163
163
  # point or star?
164
- 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:
165
165
  for token in stream_response():
166
166
  if not response_started:
167
167
  status.stop()
@@ -156,13 +156,14 @@ class VertexAIExtensions:
156
156
  if bucket_name:
157
157
  runtime_config = {
158
158
  "codeInterpreterRuntimeConfig": {
159
- "fileInputGcsBucket": f"{bucket_name}/extensions/input/",
160
- "fileOutputGcsBucket": f"{bucket_name}/extensions/output/",
159
+ "fileInputGcsBucket": bucket_name,
160
+ "fileOutputGcsBucket": bucket_name,
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.18
3
+ Version: 0.71.20
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.18.tar.gz
6
+ Download-URL: https://github.com/sunholo-data/sunholo-py/archive/refs/tags/v0.71.20.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=BQVHzbXUTS1r6IwMqTMK8Gwxcydo-XNxg2nqV1JeZS4,20360
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=TzXiQS1fO3X75_quXs7Pk9IE9WQdvkdK-RZBJCfKldc,12164
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.18.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
119
- sunholo-0.71.18.dist-info/METADATA,sha256=CYDtVR9VCV2red4S6_lxGLN8NKbIZy2si1OzlxcY1Ls,6767
120
- sunholo-0.71.18.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
121
- sunholo-0.71.18.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
122
- sunholo-0.71.18.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
123
- sunholo-0.71.18.dist-info/RECORD,,
118
+ sunholo-0.71.20.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
119
+ sunholo-0.71.20.dist-info/METADATA,sha256=gtkx2Ic36DHa2v2XqCfMd2OuseDSK-LLFzDjln36PeY,6767
120
+ sunholo-0.71.20.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
121
+ sunholo-0.71.20.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
122
+ sunholo-0.71.20.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
123
+ sunholo-0.71.20.dist-info/RECORD,,