sunholo 0.118.1__py3-none-any.whl → 0.118.2__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/big_context.py +4 -1
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/METADATA +5 -5
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/RECORD +7 -7
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/LICENSE.txt +0 -0
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/WHEEL +0 -0
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/entry_points.txt +0 -0
- {sunholo-0.118.1.dist-info → sunholo-0.118.2.dist-info}/top_level.txt +0 -0
sunholo/utils/big_context.py
CHANGED
|
@@ -22,7 +22,8 @@ def has_text_extension(file_path):
|
|
|
22
22
|
'.txt', '.md', '.py', '.json', '.xml', '.csv', '.html', '.htm',
|
|
23
23
|
'.css', '.js', '.java', '.c', '.cpp', '.h', '.hpp', '.r', '.sh',
|
|
24
24
|
'.bat', '.ini', '.yaml', '.yml', '.toml', '.pl', '.rb', '.go',
|
|
25
|
-
'.ts', '.tsx', '.rs', '.swift', '.kt', '.kts', '.scala', '.sql'
|
|
25
|
+
'.ts', '.tsx', '.rs', '.swift', '.kt', '.kts', '.scala', '.sql',
|
|
26
|
+
'.tf', '.tfvars',
|
|
26
27
|
}
|
|
27
28
|
# Get the file extension and check if it's in the set
|
|
28
29
|
_, ext = os.path.splitext(file_path)
|
|
@@ -141,6 +142,8 @@ def merge_text_files(source_folder, output_file, patterns):
|
|
|
141
142
|
outfile.write(f"\n--- End of {file_path} ---\n\n")
|
|
142
143
|
except (IOError, UnicodeDecodeError):
|
|
143
144
|
print(f"Skipping file (cannot read as text): {file_path}")
|
|
145
|
+
else:
|
|
146
|
+
print(f"Skipping file (not a recognised text file extension): {file_path}")
|
|
144
147
|
outfile.write("\n--- File Tree ---\n")
|
|
145
148
|
outfile.write("\n".join(file_tree))
|
|
146
149
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: sunholo
|
|
3
|
-
Version: 0.118.
|
|
3
|
+
Version: 0.118.2
|
|
4
4
|
Summary: Large Language Model DevOps - a package to help deploy LLMs to the Cloud.
|
|
5
5
|
Author-email: Holosun ApS <multivac@sunholo.com>
|
|
6
6
|
License: Apache License, Version 2.0
|
|
@@ -59,10 +59,10 @@ Requires-Dist: lancedb; extra == "all"
|
|
|
59
59
|
Requires-Dist: langchain>=0.2.16; extra == "all"
|
|
60
60
|
Requires-Dist: langchain-experimental>=0.0.61; extra == "all"
|
|
61
61
|
Requires-Dist: langchain-community>=0.2.11; extra == "all"
|
|
62
|
-
Requires-Dist: langchain-openai
|
|
63
|
-
Requires-Dist: langchain-google-genai
|
|
62
|
+
Requires-Dist: langchain-openai>=0.3.2; extra == "all"
|
|
63
|
+
Requires-Dist: langchain-google-genai>=2.0.9; extra == "all"
|
|
64
64
|
Requires-Dist: langchain_google_alloydb_pg; extra == "all"
|
|
65
|
-
Requires-Dist: langchain-anthropic
|
|
65
|
+
Requires-Dist: langchain-anthropic>=0.1.23; extra == "all"
|
|
66
66
|
Requires-Dist: langchain-google-vertexai; extra == "all"
|
|
67
67
|
Requires-Dist: langchain-unstructured; extra == "all"
|
|
68
68
|
Requires-Dist: langfuse; extra == "all"
|
|
@@ -142,7 +142,7 @@ Requires-Dist: langchain_google_alloydb_pg>=0.2.2; extra == "gcp"
|
|
|
142
142
|
Requires-Dist: langchain-google-vertexai; extra == "gcp"
|
|
143
143
|
Requires-Dist: pillow; extra == "gcp"
|
|
144
144
|
Provides-Extra: openai
|
|
145
|
-
Requires-Dist: langchain-openai
|
|
145
|
+
Requires-Dist: langchain-openai>=0.3.2; extra == "openai"
|
|
146
146
|
Requires-Dist: tiktoken; extra == "openai"
|
|
147
147
|
Provides-Extra: anthropic
|
|
148
148
|
Requires-Dist: langchain-anthropic>=0.1.23; extra == "anthropic"
|
|
@@ -145,7 +145,7 @@ sunholo/tools/__init__.py,sha256=5NuYpwwTX81qGUWvgwfItoSLXteNnp7KjgD7IPZUFjI,53
|
|
|
145
145
|
sunholo/tools/web_browser.py,sha256=8Gdf02F4zCOeSnijnfaL6jzk4oaSI0cj48o-esoWzwE,29086
|
|
146
146
|
sunholo/utils/__init__.py,sha256=Hv02T5L2zYWvCso5hzzwm8FQogwBq0OgtUbN_7Quzqc,89
|
|
147
147
|
sunholo/utils/api_key.py,sha256=Ct4bIAQZxzPEw14hP586LpVxBAVi_W9Serpy0BK-7KI,244
|
|
148
|
-
sunholo/utils/big_context.py,sha256=
|
|
148
|
+
sunholo/utils/big_context.py,sha256=HuP9_r_Nx1jvZHxjMEihgoZAXmnCh80zzsj1fq3mIOg,6021
|
|
149
149
|
sunholo/utils/config.py,sha256=bz0ODJyqnoHQIsk4pmNpVxxq5WvwS0SfOq4cnCjQPJk,9105
|
|
150
150
|
sunholo/utils/config_class.py,sha256=Z4sGzEkuxlCAJ8b-65_yzLmybnunywwOD9eXL8an5Wg,9619
|
|
151
151
|
sunholo/utils/config_schema.py,sha256=Wv-ncitzljOhgbDaq9qnFqH5LCuxNv59dTGDWgd1qdk,4189
|
|
@@ -164,9 +164,9 @@ sunholo/vertex/init.py,sha256=1OQwcPBKZYBTDPdyU7IM4X4OmiXLdsNV30C-fee2scQ,2875
|
|
|
164
164
|
sunholo/vertex/memory_tools.py,sha256=tBZxqVZ4InTmdBvLlOYwoSEWu4-kGquc-gxDwZCC4FA,7667
|
|
165
165
|
sunholo/vertex/safety.py,sha256=S9PgQT1O_BQAkcqauWncRJaydiP8Q_Jzmu9gxYfy1VA,2482
|
|
166
166
|
sunholo/vertex/type_dict_to_json.py,sha256=uTzL4o9tJRao4u-gJOFcACgWGkBOtqACmb6ihvCErL8,4694
|
|
167
|
-
sunholo-0.118.
|
|
168
|
-
sunholo-0.118.
|
|
169
|
-
sunholo-0.118.
|
|
170
|
-
sunholo-0.118.
|
|
171
|
-
sunholo-0.118.
|
|
172
|
-
sunholo-0.118.
|
|
167
|
+
sunholo-0.118.2.dist-info/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
|
|
168
|
+
sunholo-0.118.2.dist-info/METADATA,sha256=vWuHmFxLVukbaK-Dxq0hWsXTRrGD7kwDjr-__XBl67k,9638
|
|
169
|
+
sunholo-0.118.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
170
|
+
sunholo-0.118.2.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
|
|
171
|
+
sunholo-0.118.2.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
|
|
172
|
+
sunholo-0.118.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|