ziya 0.1.13__tar.gz → 0.1.14__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.
- {ziya-0.1.13 → ziya-0.1.14}/PKG-INFO +1 -1
- {ziya-0.1.13 → ziya-0.1.14}/app/server.py +3 -1
- {ziya-0.1.13 → ziya-0.1.14}/pyproject.toml +1 -1
- ziya-0.1.13/templates/.DS_Store +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/LICENSE +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/README.md +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/__init__.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/agents/__init__.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/agents/agent.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/agents/prompts.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/main.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/__init__.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/directory_util.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/gitignore_parser.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/langchain_validation_util.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/logging_utils.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/print_tree_util.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/app/utils/version_util.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/scripts.py +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/asset-manifest.json +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/favicon.ico +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/index.html +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/css/main.85c755f1.css +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/css/main.85c755f1.css.map +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/js/main.42a1bbde.js +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/js/main.42a1bbde.js.LICENSE.txt +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/js/main.42a1bbde.js.map +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-brands-400.455ea818179b4def0c43.woff2 +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-brands-400.60127e352b7a11f7f1bc.ttf +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-regular-400.21cb8f55d8e0c5b89751.woff2 +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-regular-400.eb91f7b948a42799f678.ttf +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-solid-900.4d986b00ff9ca3828fbd.woff2 +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-solid-900.bacd5de623fb563b961a.ttf +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-v4compatibility.c8e090db312b0bea2aa2.ttf +0 -0
- {ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-v4compatibility.cf7f5903d06b79ad60f1.woff2 +0 -0
|
@@ -43,7 +43,7 @@ async def favicon():
|
|
|
43
43
|
return FileResponse('../templates/favicon.ico')
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
def get_folder_structure(directory: str, ignored_patterns: List[Tuple[str, str]], max_depth: int =
|
|
46
|
+
def get_folder_structure(directory: str, ignored_patterns: List[Tuple[str, str]], max_depth: int = 12) -> Dict[str, Any]:
|
|
47
47
|
should_ignore_fn = parse_gitignore_patterns(ignored_patterns)
|
|
48
48
|
|
|
49
49
|
def count_tokens(file_path: str) -> int:
|
|
@@ -64,6 +64,8 @@ def get_folder_structure(directory: str, ignored_patterns: List[Tuple[str, str]]
|
|
|
64
64
|
if entry.startswith('.'): # Skip hidden files/folders
|
|
65
65
|
continue
|
|
66
66
|
entry_path = os.path.join(current_dir, entry)
|
|
67
|
+
if os.path.islink(entry_path): # Skip symbolic links
|
|
68
|
+
continue
|
|
67
69
|
if os.path.isdir(entry_path):
|
|
68
70
|
if not should_ignore_fn(entry_path):
|
|
69
71
|
sub_structure = get_structure(entry_path, current_depth + 1)
|
ziya-0.1.13/templates/.DS_Store
DELETED
|
Binary file
|
|
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
|
|
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
|
{ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-regular-400.21cb8f55d8e0c5b89751.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-v4compatibility.c8e090db312b0bea2aa2.ttf
RENAMED
|
File without changes
|
{ziya-0.1.13 → ziya-0.1.14}/templates/static/media/fa-v4compatibility.cf7f5903d06b79ad60f1.woff2
RENAMED
|
File without changes
|