ziya 0.1.3__tar.gz → 0.1.4__tar.gz

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.

Potentially problematic release.


This version of ziya might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ziya
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary:
5
5
  Author: Vishnu Krishnaprasad
6
6
  Author-email: vishnukool@gmail.com
@@ -1,4 +1,6 @@
1
1
  import os
2
+ import botocore
3
+
2
4
  from typing import Generator, List, Tuple, Set, Union
3
5
 
4
6
  import tiktoken
@@ -38,6 +40,9 @@ model = ChatBedrock(
38
40
  model_id=model_id,
39
41
  model_kwargs={"max_tokens": 4096},
40
42
  credentials_profile_name=aws_profile if aws_profile else None,
43
+ config=botocore.config.Config(
44
+ read_timeout=900
45
+ )
41
46
  )
42
47
 
43
48
 
@@ -12,7 +12,7 @@ def main():
12
12
  help="List of directories to include (e.g., --include 'src,static'). Only directories for now")
13
13
  parser.add_argument("--profile", type=str, default=None,
14
14
  help="AWS profile to use (e.g., --profile ziya)")
15
- parser.add_argument("--model", type=str, choices=["sonnet", "haiku", "opus"], default="haiku",
15
+ parser.add_argument("--model", type=str, choices=["sonnet", "haiku", "opus"], default="sonnet",
16
16
  help="AWS Bedrock Model to use (e.g., --model sonnet)")
17
17
  parser.add_argument("--port", type=int, default=6969,
18
18
  help="Port number to run Ziya frontend on (e.g., --port 8080)")
@@ -51,7 +51,11 @@ def get_complete_file_list(user_codebase_dir: str, ignored_patterns: List[str],
51
51
 
52
52
  for file in files:
53
53
  file_path = os.path.join(root, file)
54
- if not should_ignore(file_path):
54
+ if not should_ignore(file_path) and not is_image_file(file_path):
55
55
  file_set.add(file_path)
56
56
 
57
57
  return list(file_set)
58
+
59
+ def is_image_file(file_path: str) -> bool:
60
+ image_extensions = ['.jpg', '.jpeg', '.png', '.gif', '.bmp', '.svg', '.ico']
61
+ return any(file_path.lower().endswith(ext) for ext in image_extensions)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ziya"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = ""
5
5
  authors = ["Vishnu Krishnaprasad <vishnukool@gmail.com>"]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes