janito 3.8.0__py3-none-any.whl → 3.10.0__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.
- janito/agent_events.py +75 -0
- janito/cli/chat_mode/session.py +1 -0
- janito/cli/chat_mode/shell/commands/__init__.py +2 -0
- janito/cli/chat_mode/shell/commands/interactive.py +33 -0
- janito/cli/chat_mode/toolbar.py +16 -1
- janito/cli/cli_commands/list_tools.py +1 -1
- janito/cli/core/runner.py +33 -0
- janito/cli/main_cli.py +9 -0
- janito/cli/prompt_core.py +301 -257
- janito/cli/rich_terminal_reporter.py +170 -171
- janito/cli/single_shot_mode/handler.py +19 -0
- janito/llm/agent.py +65 -0
- janito/{tools/adapters/local → plugins/core/filemanager/tools}/validate_file_syntax/core.py +7 -2
- janito/plugins/core/filemanager/tools/validate_file_syntax/txt_validator.py +28 -0
- janito/plugins/manager.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/__init__.py +7 -0
- janito/{tools/adapters → plugins/tools}/local/adapter.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/ask_user.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/copy_file.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/create_directory.py +45 -2
- janito/{tools/adapters → plugins/tools}/local/create_file.py +10 -6
- janito/{tools/adapters → plugins/tools}/local/delete_text_in_file.py +2 -2
- janito/{tools/adapters → plugins/tools}/local/fetch_url.py +3 -3
- janito/{tools/adapters → plugins/tools}/local/find_files.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/get_file_outline/core.py +2 -2
- janito/{tools/adapters → plugins/tools}/local/move_file.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/open_html_in_browser.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/open_url.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/python_code_run.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/python_command_run.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/python_file_run.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/read_chart.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/read_files.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/remove_directory.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/remove_file.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/replace_text_in_file.py +2 -2
- janito/{tools/adapters → plugins/tools}/local/run_bash_command.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/run_powershell_command.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/search_text/core.py +2 -2
- janito/{tools/adapters → plugins/tools}/local/show_image.py +1 -1
- janito/{tools/adapters → plugins/tools}/local/show_image_grid.py +1 -1
- janito/plugins/tools/local/validate_file_syntax/__init__.py +1 -0
- janito/plugins/tools/local/validate_file_syntax/core.py +119 -0
- janito/plugins/tools/local/validate_file_syntax/txt_validator.py +28 -0
- janito/{tools/adapters → plugins/tools}/local/view_file.py +1 -1
- janito/tests/test_tool_adapter_case_insensitive.py +112 -0
- janito/tools/__init__.py +2 -2
- janito/tools/inspect_registry.py +1 -1
- janito/tools/tool_base.py +8 -1
- janito/tools/tools_adapter.py +514 -510
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/METADATA +84 -84
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/RECORD +77 -70
- /janito/{tools/adapters/local → plugins/core/filemanager/tools}/validate_file_syntax/__init__.py +0 -0
- /janito/{tools/adapters → plugins/tools}/__init__.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/get_file_outline/__init__.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/get_file_outline/java_outline.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/get_file_outline/markdown_outline.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/get_file_outline/python_outline.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/get_file_outline/search_outline.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/search_text/__init__.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/search_text/match_lines.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/search_text/pattern_utils.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/search_text/traverse_directory.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/css_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/html_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/jinja2_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/js_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/json_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/markdown_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/ps1_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/python_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/xml_validator.py +0 -0
- /janito/{tools/adapters → plugins/tools}/local/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/WHEEL +0 -0
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/entry_points.txt +0 -0
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/licenses/LICENSE +0 -0
- {janito-3.8.0.dist-info → janito-3.10.0.dist-info}/top_level.txt +0 -0
@@ -1,84 +1,84 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: janito
|
3
|
-
Version: 3.
|
4
|
-
Summary: A new Python package called janito.
|
5
|
-
Author-email: João Pinto <janito@ikignosis.org>
|
6
|
-
Project-URL: Homepage, https://github.com/ikignosis/janito
|
7
|
-
Requires-Python: >=3.7
|
8
|
-
Description-Content-Type: text/markdown
|
9
|
-
License-File: LICENSE
|
10
|
-
Requires-Dist: attrs==25.3.0
|
11
|
-
Requires-Dist: rich==14.0.0
|
12
|
-
Requires-Dist: pathspec==0.12.1
|
13
|
-
Requires-Dist: setuptools>=61.0
|
14
|
-
Requires-Dist: pyyaml>=6.0
|
15
|
-
Requires-Dist: jinja2>=3.0.0
|
16
|
-
Requires-Dist: prompt_toolkit>=3.0.51
|
17
|
-
Requires-Dist: lxml>=5.4.0
|
18
|
-
Requires-Dist: requests>=2.32.4
|
19
|
-
Requires-Dist: bs4>=0.0.2
|
20
|
-
Requires-Dist: questionary>=2.0.1
|
21
|
-
Requires-Dist: openai>=1.68.0
|
22
|
-
Requires-Dist: Pillow>=10.0.0
|
23
|
-
Provides-Extra: dev
|
24
|
-
Requires-Dist: pytest; extra == "dev"
|
25
|
-
Requires-Dist: pre-commit; extra == "dev"
|
26
|
-
Requires-Dist: ruff==0.11.9; extra == "dev"
|
27
|
-
Requires-Dist: detect-secrets==1.4.0; extra == "dev"
|
28
|
-
Requires-Dist: codespell==2.4.1; extra == "dev"
|
29
|
-
Requires-Dist: black; extra == "dev"
|
30
|
-
Requires-Dist: questionary>=2.0.1; extra == "dev"
|
31
|
-
Requires-Dist: setuptools_scm>=8.0; extra == "dev"
|
32
|
-
Provides-Extra: coder
|
33
|
-
Requires-Dist: janito-coder; extra == "coder"
|
34
|
-
Dynamic: license-file
|
35
|
-
|
36
|
-
#
|
37
|
-
|
38
|
-
```bash
|
39
|
-
$
|
40
|
-
Usage:
|
41
|
-
|
42
|
-
Interact with Nine API resources. See https://docs.nineapis.ch for the full API docs.
|
43
|
-
|
44
|
-
Run "
|
45
|
-
```
|
46
|
-
|
47
|
-
## Setup
|
48
|
-
|
49
|
-
```bash
|
50
|
-
# If you have go already installed
|
51
|
-
go install github.com/ninech/
|
52
|
-
|
53
|
-
# Homebrew
|
54
|
-
brew install ninech/taps/
|
55
|
-
|
56
|
-
# Debian/Ubuntu
|
57
|
-
echo "deb [trusted=yes] https://repo.nine.ch/deb/ /" | sudo tee /etc/apt/sources.list.d/repo.nine.ch.list
|
58
|
-
sudo apt-get update
|
59
|
-
sudo apt-get install
|
60
|
-
|
61
|
-
# Fedora/RHEL
|
62
|
-
cat <<EOF > /etc/yum.repos.d/repo.nine.ch.repo
|
63
|
-
[repo.nine.ch]
|
64
|
-
name=Nine Repo
|
65
|
-
baseurl=https://repo.nine.ch/yum/
|
66
|
-
enabled=1
|
67
|
-
gpgcheck=0
|
68
|
-
EOF
|
69
|
-
dnf install
|
70
|
-
|
71
|
-
# Arch
|
72
|
-
# Install yay: https://github.com/Jguer/yay#binary
|
73
|
-
yay --version
|
74
|
-
yay -S
|
75
|
-
```
|
76
|
-
|
77
|
-
For Windows users,
|
78
|
-
latest exe file from the [releases](https://github.com/ninech/
|
79
|
-
install it.
|
80
|
-
|
81
|
-
## Getting started
|
82
|
-
|
83
|
-
* login to the API using `
|
84
|
-
* run `
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: janito
|
3
|
+
Version: 3.10.0
|
4
|
+
Summary: A new Python package called janito.
|
5
|
+
Author-email: João Pinto <janito@ikignosis.org>
|
6
|
+
Project-URL: Homepage, https://github.com/ikignosis/janito
|
7
|
+
Requires-Python: >=3.7
|
8
|
+
Description-Content-Type: text/markdown
|
9
|
+
License-File: LICENSE
|
10
|
+
Requires-Dist: attrs==25.3.0
|
11
|
+
Requires-Dist: rich==14.0.0
|
12
|
+
Requires-Dist: pathspec==0.12.1
|
13
|
+
Requires-Dist: setuptools>=61.0
|
14
|
+
Requires-Dist: pyyaml>=6.0
|
15
|
+
Requires-Dist: jinja2>=3.0.0
|
16
|
+
Requires-Dist: prompt_toolkit>=3.0.51
|
17
|
+
Requires-Dist: lxml>=5.4.0
|
18
|
+
Requires-Dist: requests>=2.32.4
|
19
|
+
Requires-Dist: bs4>=0.0.2
|
20
|
+
Requires-Dist: questionary>=2.0.1
|
21
|
+
Requires-Dist: openai>=1.68.0
|
22
|
+
Requires-Dist: Pillow>=10.0.0
|
23
|
+
Provides-Extra: dev
|
24
|
+
Requires-Dist: pytest; extra == "dev"
|
25
|
+
Requires-Dist: pre-commit; extra == "dev"
|
26
|
+
Requires-Dist: ruff==0.11.9; extra == "dev"
|
27
|
+
Requires-Dist: detect-secrets==1.4.0; extra == "dev"
|
28
|
+
Requires-Dist: codespell==2.4.1; extra == "dev"
|
29
|
+
Requires-Dist: black; extra == "dev"
|
30
|
+
Requires-Dist: questionary>=2.0.1; extra == "dev"
|
31
|
+
Requires-Dist: setuptools_scm>=8.0; extra == "dev"
|
32
|
+
Provides-Extra: coder
|
33
|
+
Requires-Dist: janito-coder; extra == "coder"
|
34
|
+
Dynamic: license-file
|
35
|
+
|
36
|
+
# Janito
|
37
|
+
|
38
|
+
```bash
|
39
|
+
$ janito --help
|
40
|
+
Usage: janito <command>
|
41
|
+
|
42
|
+
Interact with Nine API resources. See https://docs.nineapis.ch for the full API docs.
|
43
|
+
|
44
|
+
Run "janito <command> --help" for more information on a command.
|
45
|
+
```
|
46
|
+
|
47
|
+
## Setup
|
48
|
+
|
49
|
+
```bash
|
50
|
+
# If you have go already installed
|
51
|
+
go install github.com/ninech/janito@latest
|
52
|
+
|
53
|
+
# Homebrew
|
54
|
+
brew install ninech/taps/janito
|
55
|
+
|
56
|
+
# Debian/Ubuntu
|
57
|
+
echo "deb [trusted=yes] https://repo.nine.ch/deb/ /" | sudo tee /etc/apt/sources.list.d/repo.nine.ch.list
|
58
|
+
sudo apt-get update
|
59
|
+
sudo apt-get install janito
|
60
|
+
|
61
|
+
# Fedora/RHEL
|
62
|
+
cat <<EOF > /etc/yum.repos.d/repo.nine.ch.repo
|
63
|
+
[repo.nine.ch]
|
64
|
+
name=Nine Repo
|
65
|
+
baseurl=https://repo.nine.ch/yum/
|
66
|
+
enabled=1
|
67
|
+
gpgcheck=0
|
68
|
+
EOF
|
69
|
+
dnf install janito
|
70
|
+
|
71
|
+
# Arch
|
72
|
+
# Install yay: https://github.com/Jguer/yay#binary
|
73
|
+
yay --version
|
74
|
+
yay -S janito-bin
|
75
|
+
```
|
76
|
+
|
77
|
+
For Windows users, janito is also built for arm64 and amd64. You can download the
|
78
|
+
latest exe file from the [releases](https://github.com/ninech/janito/releases) and
|
79
|
+
install it.
|
80
|
+
|
81
|
+
## Getting started
|
82
|
+
|
83
|
+
* login to the API using `janito auth login`
|
84
|
+
* run `janito --help` to get a list of all available commands
|
@@ -2,6 +2,7 @@ janito/README.md,sha256=Kd4GcEYIt04520J2AIMCZbp1enAGRzlLswCfyi1g5AY,4737
|
|
2
2
|
janito/__init__.py,sha256=a0pFui3A_AfWJiUfg93yE-Vf4868bqG3y9yg2fkTIuY,244
|
3
3
|
janito/__main__.py,sha256=lPQ8kAyYfyeS1KopmJ8EVY5g1YswlIqCS615mM_B_rM,70
|
4
4
|
janito/_version.py,sha256=PtAVr2K9fOS5sv6aXzmcb7UaR5NLGMFOofL7Ndjh75o,2344
|
5
|
+
janito/agent_events.py,sha256=qOxoqeHQy3eITkfh3gaLoHWqrNH3aGlcRvEBZc2wsow,2114
|
5
6
|
janito/config.py,sha256=DXuC74NEywKvpTkOSrrxJGvHdL_tvXEf27pkedV3XZA,313
|
6
7
|
janito/config_manager.py,sha256=0dnECwhkgk8dWYZDtHZ24lNXhYJ4PkmYEDty9Vc1s3c,6281
|
7
8
|
janito/conversation_history.py,sha256=GqqEJElTVONzOMRe-9g25WCMcDi0PF7DOnqGWLTrY_8,897
|
@@ -30,24 +31,24 @@ janito/cli/__init__.py,sha256=xaPDOrWphBbCR63Xpcx_yfpXSJIlCaaICc4j2qpWqrM,194
|
|
30
31
|
janito/cli/config.py,sha256=HkZ14701HzIqrvaNyDcDhGlVHfpX_uHlLp2rHmhRm_k,872
|
31
32
|
janito/cli/console.py,sha256=gJolqzWL7jEPLxeuH-CwBDRFpXt976KdZOEAB2tdBDs,64
|
32
33
|
janito/cli/main.py,sha256=s5odou0txf8pzTf1ADk2yV7T5m8B6cejJ81e7iu776U,312
|
33
|
-
janito/cli/main_cli.py,sha256=
|
34
|
-
janito/cli/prompt_core.py,sha256=
|
34
|
+
janito/cli/main_cli.py,sha256=0_mB-FKF-5ilUVZj3xL_MTmiZ-0NGmT2jDZYceiS6xE,16920
|
35
|
+
janito/cli/prompt_core.py,sha256=EIqvWuYh-stVDL6Jcbg3YAlT2wfVi70N07iGo0bgrts,13504
|
35
36
|
janito/cli/prompt_handler.py,sha256=SnPTlL64noeAMGlI08VBDD5IDD8jlVMIYA4-fS8zVLg,215
|
36
37
|
janito/cli/prompt_setup.py,sha256=s48gvNfZhKjsEhf4EzL1tKIGm4wDidPMDvlM6TAPYes,2116
|
37
|
-
janito/cli/rich_terminal_reporter.py,sha256=
|
38
|
+
janito/cli/rich_terminal_reporter.py,sha256=Lhfsicxvqjz1eWh51lGU2huCNJXfD6sCELZMReTbzF0,6659
|
38
39
|
janito/cli/utils.py,sha256=plCQiDKIf3V8mFhhX5H9-MF2W86i-xRdWf8Xi117Z0w,677
|
39
40
|
janito/cli/verbose_output.py,sha256=wY_B4of5e8Vv7w1fRwOZzNGU2JqbMdcFnGjtEr4hLus,7686
|
40
41
|
janito/cli/chat_mode/bindings.py,sha256=odjc5_-YW1t2FRhBUNRNoBMoQIg5sMz3ktV7xG0ADFU,975
|
41
42
|
janito/cli/chat_mode/chat_entry.py,sha256=RFdPd23jsA2DMHRacpjAdwI_1dFBaWrtnwyQEgb2fHA,475
|
42
43
|
janito/cli/chat_mode/prompt_style.py,sha256=vsqQ9xxmrYjj1pWuVe9CayQf39fo2EIXrkKPkflSVn4,805
|
43
44
|
janito/cli/chat_mode/script_runner.py,sha256=WFTFVWzg_VQrD2Ujj02XWjscfGgHwmjBeRxaEjWw9ps,6505
|
44
|
-
janito/cli/chat_mode/session.py,sha256=
|
45
|
-
janito/cli/chat_mode/toolbar.py,sha256=
|
45
|
+
janito/cli/chat_mode/session.py,sha256=yyWSd6TpY0H4pDsB5jv9sg0yVmlJYo41XjIbDDcafnI,18609
|
46
|
+
janito/cli/chat_mode/toolbar.py,sha256=1Va-glkUGJUekOSGbKtD5ruiIfFUfPoICO0wfoEkElI,3988
|
46
47
|
janito/cli/chat_mode/shell/autocomplete.py,sha256=lE68MaVaodbA2VfUM0_YLqQVLBJAE_BJsd5cMtwuD-g,793
|
47
48
|
janito/cli/chat_mode/shell/commands.bak.zip,sha256=I7GFjXg2ORT5NzFpicH1vQ3kchhduQsZinzqo0xO8wU,74238
|
48
49
|
janito/cli/chat_mode/shell/input_history.py,sha256=9620dKYSpXfGhdd2msbuqnkNW3Drv0dZ0eisWBaGKbg,2586
|
49
50
|
janito/cli/chat_mode/shell/session.bak.zip,sha256=m1GyO3Wy4G4D9sVgRO6ZDyC0VjclsmnEJsiQoer4LzI,5789
|
50
|
-
janito/cli/chat_mode/shell/commands/__init__.py,sha256=
|
51
|
+
janito/cli/chat_mode/shell/commands/__init__.py,sha256=7JR7KK80zy6t0EDHxMlbs41_IMQ82sjcLp-VAs1foqA,2560
|
51
52
|
janito/cli/chat_mode/shell/commands/_priv_check.py,sha256=OBPRMZlFlLSJSfbXrLqRCqD3ISKqR0QNzBJpa7g30Ro,206
|
52
53
|
janito/cli/chat_mode/shell/commands/_priv_status.py,sha256=WgCEK38Hllz3Bz4TgVgODdmo0BDaBey5t0uMyA3125k,478
|
53
54
|
janito/cli/chat_mode/shell/commands/bang.py,sha256=qVCUM8ZnGE1J3yG1hjYYw7upY4PR6bhNNYfJa-NfnI4,1860
|
@@ -57,6 +58,7 @@ janito/cli/chat_mode/shell/commands/conversation_restart.py,sha256=idPjWQ4Caps2v
|
|
57
58
|
janito/cli/chat_mode/shell/commands/execute.py,sha256=ms8qM3mGc-B2rMznPVj01Lx_qYbIOBXzitVuue5nUEo,2518
|
58
59
|
janito/cli/chat_mode/shell/commands/help.py,sha256=scbjpb37WT9GLrYf-Cn7MrUhL_ZUQORWVfBRTc1Y5ME,1293
|
59
60
|
janito/cli/chat_mode/shell/commands/history_view.py,sha256=9dyxYpDHjT77LEIikjBQA03Ep3P2AmKXUwUnVsG0OQc,3584
|
61
|
+
janito/cli/chat_mode/shell/commands/interactive.py,sha256=xLZSdobaRG4sTMdEPIJxyFWAV9InExz6MBGOmCg2pCc,1420
|
60
62
|
janito/cli/chat_mode/shell/commands/lang.py,sha256=uIelDs3gPYDZ9X9gw7iDMmiwefT7TiBo32420pq2tW8,837
|
61
63
|
janito/cli/chat_mode/shell/commands/model.py,sha256=DrtQuqbac5VCpzBikpdu9vVgFVm_K9FYIjUOqmUztD4,1518
|
62
64
|
janito/cli/chat_mode/shell/commands/multi.py,sha256=HAAk0fAO3n8KFta3I4hT_scOAlz4SxWDyaNBUJBQ4nc,1985
|
@@ -86,7 +88,7 @@ janito/cli/cli_commands/list_plugins.py,sha256=Lv-M6EAFiqnj0tl9Bq23s162t--81AIs2
|
|
86
88
|
janito/cli/cli_commands/list_profiles.py,sha256=O4k6U9iCEeNH3lM-NP_XX_E9W0h__hheLSn23241dkA,3538
|
87
89
|
janito/cli/cli_commands/list_providers.py,sha256=oilrBjNL5mot1nz45XQQY6oeiSxoNvphhQYspNcEJpw,391
|
88
90
|
janito/cli/cli_commands/list_providers_region.py,sha256=qrMj_gtgEMty8UH0P_O5SgWCVJ9ZKxGUp_GdsE4_EH4,2548
|
89
|
-
janito/cli/cli_commands/list_tools.py,sha256=
|
91
|
+
janito/cli/cli_commands/list_tools.py,sha256=lHPbwXxPysxnDqatZtFOD7S49nYinE5GGgav2UT_x0E,3592
|
90
92
|
janito/cli/cli_commands/model_selection.py,sha256=ANWtwC5glZkGMdaNtARDbEG3QmuBUcDLVxzzC5jeBNo,1643
|
91
93
|
janito/cli/cli_commands/model_utils.py,sha256=4t2ZN8DYA8jxluXHiiliV8gMbF_90nKGtgU9VO4-gMg,5088
|
92
94
|
janito/cli/cli_commands/ping_providers.py,sha256=hetZAKKZzQYRpRDT5OvRTOe4jYUVNZGjo8gFoyeRA3I,1921
|
@@ -97,11 +99,11 @@ janito/cli/core/__init__.py,sha256=YH95fhgY9yBX8RgqX9dSrEkl4exjV0T4rbmJ6xUpG-Y,1
|
|
97
99
|
janito/cli/core/event_logger.py,sha256=1X6lR0Ax7AgF8HlPWFoY5Ystuu7Bh4ooTo78vXzeGB0,2008
|
98
100
|
janito/cli/core/getters.py,sha256=opmcSz86J-I95Klsh0c4y6lsYvNakrvRqvuA0o5ARWI,2869
|
99
101
|
janito/cli/core/model_guesser.py,sha256=V7LBkIllSp_tP9-2B1gcl5b4b-La7mrOvE3AZQQm8lk,1716
|
100
|
-
janito/cli/core/runner.py,sha256=
|
102
|
+
janito/cli/core/runner.py,sha256=RhuWk6biW5hj1lBrGJrVmt4TtC5laq_bhEsutuqeyAg,10336
|
101
103
|
janito/cli/core/setters.py,sha256=zjSUxy6iUzcrmEunFk7dA90KqbMaq2O7LTGP8wn2HxA,5378
|
102
104
|
janito/cli/core/unsetters.py,sha256=FEw9gCt0vRvoCt0kRSNfVB2tzi_TqppJIx2nHPP59-k,2012
|
103
105
|
janito/cli/single_shot_mode/__init__.py,sha256=Ct99pKe9tINzVW6oedZJfzfZQKWpXz-weSSCn0hrwHY,115
|
104
|
-
janito/cli/single_shot_mode/handler.py,sha256=
|
106
|
+
janito/cli/single_shot_mode/handler.py,sha256=dZmUiyZ-rxzPqEUz7VILaIhVgKX_TbM0UjAJo1BB2M4,6314
|
105
107
|
janito/docs/GETTING_STARTED.md,sha256=Yx3vi1LQWyDWlE_JYuz4V9EL-Gh4WU6cOBqCr8XidF4,4960
|
106
108
|
janito/drivers/dashscope.bak.zip,sha256=9Pv4Xyciju8jO1lEMFVgYXexoZkxmDO3Ig6vw3ODfL8,4936
|
107
109
|
janito/drivers/openai_responses.bak.zip,sha256=E43eDCHGa2tCtdjzj_pMnWDdnsOZzj8BJTR5tJp8wcM,13352
|
@@ -122,7 +124,7 @@ janito/i18n/messages.py,sha256=fBuwOTFoygyHPkYphm6Y0r1iE8497Z4iryVAmPhMEkg,1851
|
|
122
124
|
janito/i18n/pt.py,sha256=NlTgpDSftUfFG7FGbs7TK54vQlJVMyaZDHGcWjelwMc,4168
|
123
125
|
janito/llm/README.md,sha256=6GRqCu_a9va5HCB1YqNqbshyWKFyAGlnXugrjom-xj8,1213
|
124
126
|
janito/llm/__init__.py,sha256=dpyVH51qVRCw-PDyAFLAxq0zd4jl5MDcuV6Cri0D-dQ,134
|
125
|
-
janito/llm/agent.py,sha256=
|
127
|
+
janito/llm/agent.py,sha256=Q7RT42cepDkXQqUVhyvREn9EqGtSkDprV6YRc_gbOxw,23916
|
126
128
|
janito/llm/auth.py,sha256=8Dl_orUEPhn2X6XjkO2Nr-j1HFT2YDxk1qJl9hSFI88,2286
|
127
129
|
janito/llm/auth_utils.py,sha256=7GH7bIScKhVWJW6ugcDrJLcYRamj5dl_l8N1rrvR4Ws,663
|
128
130
|
janito/llm/driver.py,sha256=stiicPe_MXTuWW4q6MSwK7PCj8UZcA_30pGACu6xYUQ,10039
|
@@ -143,7 +145,60 @@ janito/plugins/core_loader.py,sha256=VcIwuKUaR2bvRZIFEiUHaS8YulTOKrYtvO_VhKHRpGI
|
|
143
145
|
janito/plugins/core_loader_fixed.py,sha256=ZjBOU-aQCMnRXxQfFSI5caUR_IqaI0HdqOJSt-G-Lkc,3909
|
144
146
|
janito/plugins/discovery.py,sha256=JKaoROD4Ci-k8HN1hns130mXq28ZZhQsWfTBSJoOqYc,10106
|
145
147
|
janito/plugins/discovery_core.py,sha256=O5OccNWNyrSXGeeTk5xSG0qbsjNsajclNNCiHljFRpI,1613
|
146
|
-
janito/plugins/manager.py,sha256=
|
148
|
+
janito/plugins/manager.py,sha256=eSpMjXcyNBrom-hJ-_QaaJ4Mrr_qG395-NNcK_wPk3I,8134
|
149
|
+
janito/plugins/core/filemanager/tools/validate_file_syntax/__init__.py,sha256=P53RHmas4BbHL90cMxH9m-RpMCJI8JquoJb0rpkPVVk,29
|
150
|
+
janito/plugins/core/filemanager/tools/validate_file_syntax/core.py,sha256=EoBMJ_A5mJJs7BMhOJ4gpxBd_p8q1e4597k_V5bJNjk,3940
|
151
|
+
janito/plugins/core/filemanager/tools/validate_file_syntax/txt_validator.py,sha256=5GbO_IhbOUjHM-klorS3dUKeEOfKXXIuK3T-1JjSIeU,909
|
152
|
+
janito/plugins/tools/__init__.py,sha256=XKixOKtUJs1R-rGwGDXSLVLg5-Kp090gvWbsseWT4LI,92
|
153
|
+
janito/plugins/tools/local/__init__.py,sha256=YXsVl-7Tsk2m878RkTEjb7lfKduUvnGTFTFa2LcT0hM,2648
|
154
|
+
janito/plugins/tools/local/adapter.py,sha256=LENtKWnoHrDSnPid195R_9mSgKieNQKyH6XzaQjh7uY,8706
|
155
|
+
janito/plugins/tools/local/ask_user.py,sha256=RJGPYHUL4tbpjpkfnickJxl_KotBLTqT75JntpOXjCY,4059
|
156
|
+
janito/plugins/tools/local/copy_file.py,sha256=j7isTujW0z0zUMh3QXQES8RdWO7RhE-IHhq7oh6e1q8,3681
|
157
|
+
janito/plugins/tools/local/create_directory.py,sha256=N3jQh8ngUwjXnQ0-jxi2Ib_y4SYFI5_cJPcVvC8Afj4,4380
|
158
|
+
janito/plugins/tools/local/create_file.py,sha256=rWFj9M7-C8Dl4br_1ooDbabb7Q6oKwbBvUSUO9sPabA,6542
|
159
|
+
janito/plugins/tools/local/delete_text_in_file.py,sha256=K0nry8fsk4ZNjWE-nDNpYYUpumZwo9m4nND8C8TFfOQ,5085
|
160
|
+
janito/plugins/tools/local/fetch_url.py,sha256=cYOSnjiaVo9pTpGDkFKb4lUsP3x_fB2nHStf-CmZuCE,18220
|
161
|
+
janito/plugins/tools/local/find_files.py,sha256=esFwkmJN_d-GkknSjkuBRr_DOsXFQQana-o08Y7YXts,6249
|
162
|
+
janito/plugins/tools/local/move_file.py,sha256=ddl3Jj3Uq7NQ19gsT8oRX_l0qjL6c7kVcH9Qg0VCNi8,4694
|
163
|
+
janito/plugins/tools/local/open_html_in_browser.py,sha256=RUD6QOs5CjEXdFEkIhk4W4m2txI_MJw0CbO4z5t4kL0,2100
|
164
|
+
janito/plugins/tools/local/open_url.py,sha256=BBcUPBo7kyIXPsQj5xB_2dlLiSABYwEpGPLX8NNpZ6A,1551
|
165
|
+
janito/plugins/tools/local/python_code_run.py,sha256=oVU3XCuUD5lJE3SrMnslCr_zBE6HBVA1pWVjqHLQ5mM,6980
|
166
|
+
janito/plugins/tools/local/python_command_run.py,sha256=UJB5Ac0WXvzPDavYd7PC2S2U0qA_OvIkJnf2J_XPr7I,6934
|
167
|
+
janito/plugins/tools/local/python_file_run.py,sha256=wX-R4lP66LCEjFyc5hkrxI9wJgAmwI1oINP5azxxLlw,6858
|
168
|
+
janito/plugins/tools/local/read_chart.py,sha256=H4-fcgHQweAOJsvktJ7XYs39UIVJdXRZK-xhrZEX69E,10410
|
169
|
+
janito/plugins/tools/local/read_files.py,sha256=Rcke8QHU1NebNnaLsvaS81m4ZSBH0uhRGbezYN00X0E,2328
|
170
|
+
janito/plugins/tools/local/remove_directory.py,sha256=_P1VgC-bSttN-a2-VlEZ2inphG4me91jXe1OZi7bqR4,1912
|
171
|
+
janito/plugins/tools/local/remove_file.py,sha256=YbTByXAnnvlQ57y-2B2qcblmOgEJpeBrGhi4Te4-QlA,2092
|
172
|
+
janito/plugins/tools/local/replace_text_in_file.py,sha256=OIiXsqaoVOg_umHoPnDECzY7yDCG5ZrU6zHTM1lZhfc,10964
|
173
|
+
janito/plugins/tools/local/run_bash_command.py,sha256=cKE0VUJc_qefrU-VcTk_3ipViKZDLlbfGS8D0cEAHMg,7954
|
174
|
+
janito/plugins/tools/local/run_powershell_command.py,sha256=nA-8rbf2NNG6eWSUwB5YkNOpCADLa_APC9y-ouk1DMc,9312
|
175
|
+
janito/plugins/tools/local/show_image.py,sha256=mxw9UJdSrmVsznFck__X4jizya2H8-HAWndO75jNY_U,2931
|
176
|
+
janito/plugins/tools/local/show_image_grid.py,sha256=HbFJwSQonHXFnW3_URk45q4S7fS-opnojscoSe3_QGQ,2999
|
177
|
+
janito/plugins/tools/local/view_file.py,sha256=5VugCv4xBNeHNqDfUq3nE0y7Ylqg5pZAHe2i0TbNfes,7378
|
178
|
+
janito/plugins/tools/local/get_file_outline/__init__.py,sha256=OKV_BHnoD9h-vkcVoW6AHmsuDjjauHPCKNK0nVFl4sU,37
|
179
|
+
janito/plugins/tools/local/get_file_outline/core.py,sha256=E8nV5Qx7DuslRTwhONlBS1LxJJLWsE1TWeOSXMFKtFs,4609
|
180
|
+
janito/plugins/tools/local/get_file_outline/java_outline.py,sha256=_UeUY5JoQEUdlHcK8aqGTqYJl0T2KxIFXPTdwum9gKQ,1825
|
181
|
+
janito/plugins/tools/local/get_file_outline/markdown_outline.py,sha256=bXEBg0D93tEBDNy8t-wh4i7WxsxfpQ2C3dX1_rmtj08,434
|
182
|
+
janito/plugins/tools/local/get_file_outline/python_outline.py,sha256=RAcf9Vxec08lA06drYaNre5HCJ2lTzrRAskZ3rlyE-U,10326
|
183
|
+
janito/plugins/tools/local/get_file_outline/search_outline.py,sha256=bski24TpnJVf3L0TNzkx3HfvaXwttQl4EVkwk2POQOw,1348
|
184
|
+
janito/plugins/tools/local/search_text/__init__.py,sha256=FEYpF5tTtf0fiAyRGIGSn-kV-MJDkhdFIbus16mYW8Y,34
|
185
|
+
janito/plugins/tools/local/search_text/core.py,sha256=Ded2lHocjRMreq6OcXDTdgQGD4KRyI55mjeHJSeecrg,7875
|
186
|
+
janito/plugins/tools/local/search_text/match_lines.py,sha256=RLR8fZFP-Q57rY0fTENbMItmt3dJZiYX0otmGHVRjfw,2131
|
187
|
+
janito/plugins/tools/local/search_text/pattern_utils.py,sha256=D7vtAr8oT0tGV0C_UUarAXS9XQtP-MTYmmc8Yg8iVTg,2362
|
188
|
+
janito/plugins/tools/local/search_text/traverse_directory.py,sha256=EpL1qywAV0H29pm8-QsHrjKchKP4i4sRUOENVuNptCo,4000
|
189
|
+
janito/plugins/tools/local/validate_file_syntax/__init__.py,sha256=P53RHmas4BbHL90cMxH9m-RpMCJI8JquoJb0rpkPVVk,29
|
190
|
+
janito/plugins/tools/local/validate_file_syntax/core.py,sha256=EoBMJ_A5mJJs7BMhOJ4gpxBd_p8q1e4597k_V5bJNjk,3940
|
191
|
+
janito/plugins/tools/local/validate_file_syntax/css_validator.py,sha256=jE5d26C_fU9k9azujbGVISn2WIRL-Ys6de4dsCq30bo,1351
|
192
|
+
janito/plugins/tools/local/validate_file_syntax/html_validator.py,sha256=VV93BRcAeUraXHc9dUyH1cs9gRwRwO84K1-L5zbJnYU,3207
|
193
|
+
janito/plugins/tools/local/validate_file_syntax/jinja2_validator.py,sha256=lfM0SsKsFygiEp1IuLNr5jdS7XJyjCLOPw2yo9vl-pY,1763
|
194
|
+
janito/plugins/tools/local/validate_file_syntax/js_validator.py,sha256=42LvgyMVhG9c2EAaSz3J9pu-yuh1oyIvRp0wN2rHiDQ,998
|
195
|
+
janito/plugins/tools/local/validate_file_syntax/json_validator.py,sha256=muCB0-bdxk9zNulzH1It3hWpYzJC3hD8LbxCnE0P5is,150
|
196
|
+
janito/plugins/tools/local/validate_file_syntax/markdown_validator.py,sha256=k4UT88fXvtclygz-nFhCMHJL5sk5WlGD-fP_cWqWMyU,3511
|
197
|
+
janito/plugins/tools/local/validate_file_syntax/ps1_validator.py,sha256=TeIkPt08t_-w2JiKksXHHK9lJNT348ZDkWoSTzMtRrI,1152
|
198
|
+
janito/plugins/tools/local/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
|
199
|
+
janito/plugins/tools/local/validate_file_syntax/txt_validator.py,sha256=5GbO_IhbOUjHM-klorS3dUKeEOfKXXIuK3T-1JjSIeU,909
|
200
|
+
janito/plugins/tools/local/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
|
201
|
+
janito/plugins/tools/local/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
|
147
202
|
janito/providers/__init__.py,sha256=EvOFeiqucAY9tgCosJ81p0QA6wQwMT1cR3EeIGrhSQQ,528
|
148
203
|
janito/providers/dashscope.bak.zip,sha256=BwXxRmZreEivvRtmqbr5BR62IFVlNjAf4y6DrF2BVJo,5998
|
149
204
|
janito/providers/registry.py,sha256=Ygwv9eVrTXOKhv0EKxSWQXO5WMHvajWE2Q_Lc3p7dKo,730
|
@@ -185,13 +240,14 @@ janito/regions/__init__.py,sha256=DVUiWPXGKX73tj3PJcLJXdQTwhiYWlcWPNpPcNNeYhk,48
|
|
185
240
|
janito/regions/cli.py,sha256=dFiHj1XxqhegqK1kFz-08QpYgiYniEi_ZQiDqjyUaJs,3612
|
186
241
|
janito/regions/geo_utils.py,sha256=nLJ2x0tx1xMNI0_cMEiji-X8denynsaPYmXR9gGg8uk,5908
|
187
242
|
janito/regions/provider_regions.py,sha256=QJdbsdgjg-WcTRqPLGtm3pHJAm2o0-Y9MgE_vNzENEk,4619
|
243
|
+
janito/tests/test_tool_adapter_case_insensitive.py,sha256=ZZd7-bnWabzYoQ3P0TugBWiukZBKivIYjE8enut7quk,3649
|
188
244
|
janito/tools/DOCSTRING_STANDARD.txt,sha256=VLPwNgjxRVD_xZSSVvUZ4H-4bBwM-VKh_RyfzYQsYSs,1735
|
189
245
|
janito/tools/README.md,sha256=5HkLpF5k4PENJER7SlDPRXj0yo9mpHvAHW4uuzhq4ak,115
|
190
|
-
janito/tools/__init__.py,sha256=
|
246
|
+
janito/tools/__init__.py,sha256=8Dmc23B-OancdQsUK4xzKj9wsopsNa5bwm_6sYU63wE,1169
|
191
247
|
janito/tools/base.py,sha256=R38A9xWYh3JRYZMDSom2d1taNDy9J7HpLbZo9X2wH_o,316
|
192
248
|
janito/tools/disabled_tools.py,sha256=Tx__16wtMWZ9z34cYLdH1gukwot5MCL-9kLjd5MPX6Y,2110
|
193
249
|
janito/tools/function_adapter.py,sha256=A_-5pA5Y3v0TAYMA-vq3A-Cawg75kH5XWcUEkNHSOoI,2267
|
194
|
-
janito/tools/inspect_registry.py,sha256=
|
250
|
+
janito/tools/inspect_registry.py,sha256=95vFn9dZVv9J0JO4SSunduI2AVnVkCMDHbOZ_XQaAxc,537
|
195
251
|
janito/tools/loop_protection.py,sha256=WQ2Cqt459vXvrO0T1EqkEHynHlRkPzfaC83RSmXzjkM,4718
|
196
252
|
janito/tools/loop_protection_decorator.py,sha256=R1j2ouscKbVcDm2wlxRZ6zQuKExgj633ijeDq4j0oO0,6457
|
197
253
|
janito/tools/outline_file.bak.zip,sha256=EeI2cBXCwTdWVgJDNiroxKeYlkjwo6NLKeXz3J-2iZI,15607
|
@@ -199,66 +255,17 @@ janito/tools/path_security.py,sha256=40b0hV0X3449Dht93A04Q3c9AYSsBQsBFy2BjzM83lA
|
|
199
255
|
janito/tools/path_utils.py,sha256=Rg5GE4kiu7rky6I2KTtivW6wPXzc9Qmq0_lOjwkPYlI,832
|
200
256
|
janito/tools/permissions.py,sha256=_viTVXyetZC01HjI2s5c3klIJ8-RkWB1ShdOaV__loY,1508
|
201
257
|
janito/tools/permissions_parse.py,sha256=LHadt0bWglm9Q2BbbVVbKePg4oa7QLeRQ-ChQZsE_dI,384
|
202
|
-
janito/tools/tool_base.py,sha256=
|
258
|
+
janito/tools/tool_base.py,sha256=OGbj4dkWpWaFkWOUWyl0LGh03_GKS_-V2IzRnxiwy8s,3928
|
203
259
|
janito/tools/tool_events.py,sha256=czRtC2TYakAySBZvfHS_Q6_NY_7_krxzAzAL1ggRFWA,1527
|
204
260
|
janito/tools/tool_run_exception.py,sha256=43yWgTaGBGEtRteo6FvTrane6fEVGo9FU1uOdjMRWJE,525
|
205
261
|
janito/tools/tool_use_tracker.py,sha256=IaEmA22D6RuL1xMUCScOMGv0crLPwEJVGmj49cydIaM,2662
|
206
262
|
janito/tools/tool_utils.py,sha256=alPm9DvtXSw_zPRKvP5GjbebPRf_nfvmWk2TNlL5Cws,1219
|
207
|
-
janito/tools/tools_adapter.py,sha256=
|
263
|
+
janito/tools/tools_adapter.py,sha256=Vd7A2tJ1q-EpoenkztK4he-0WhGjLFDP0vEfmXdFiNk,21361
|
208
264
|
janito/tools/tools_schema.py,sha256=rGrKrmpPNR07VXHAJ_haGBRRO-YGLOF51BlYRep9AAQ,4415
|
209
265
|
janito/tools/url_whitelist.py,sha256=0CPLkHTp5HgnwgjxwgXnJmwPeZQ30q4j3YjW59hiUUE,4295
|
210
|
-
janito/
|
211
|
-
janito/
|
212
|
-
janito/
|
213
|
-
janito/
|
214
|
-
janito/
|
215
|
-
janito/
|
216
|
-
janito/tools/adapters/local/create_file.py,sha256=fLTVnMpDnHzzIVK3nS0DtawBT-I18Is-qa0Hg8y6TXY,6385
|
217
|
-
janito/tools/adapters/local/delete_text_in_file.py,sha256=uEeedRxXAR7_CqUc_qhbEdM0OzRi_pgnP-iDjs2Zvjk,5087
|
218
|
-
janito/tools/adapters/local/fetch_url.py,sha256=QjoOZj06PjsU8uFjJ6O8Fy-WUvS4GhSaHAJQx2rAzoE,18212
|
219
|
-
janito/tools/adapters/local/find_files.py,sha256=Zbag3aP34vc7ffJh8bOqAwXj3KiZhV--uzTVHtNb-fI,6250
|
220
|
-
janito/tools/adapters/local/move_file.py,sha256=LMGm8bn3NNyIPJG4vrlO09smXQcgzA09EwoooZxkIA8,4695
|
221
|
-
janito/tools/adapters/local/open_html_in_browser.py,sha256=XqICIwVx5vEE77gHkaNAC-bAeEEy0DBmDksATiL-sRY,2101
|
222
|
-
janito/tools/adapters/local/open_url.py,sha256=V3Sv7iLynUreLjVl5-bl-XFH_LzpTeBrS8-cvzp_7rM,1552
|
223
|
-
janito/tools/adapters/local/python_code_run.py,sha256=HdDuiRb7Fd7WC6bFS292XnSI1EYhn9XKlh8Hs_4Cz8E,6981
|
224
|
-
janito/tools/adapters/local/python_command_run.py,sha256=BT9emL3PsNGupkENNfUymPECiQEAm9tBhniCaOuatj0,6935
|
225
|
-
janito/tools/adapters/local/python_file_run.py,sha256=p0iOoxByCoKqW7QqfxTdHbPbRzEd_KWyZqnzrSb1qLQ,6859
|
226
|
-
janito/tools/adapters/local/read_chart.py,sha256=qQebp_MEE_x2AL_pl85uA58A4lbhLQsyGl7wiG_Cjhc,10411
|
227
|
-
janito/tools/adapters/local/read_files.py,sha256=LzlNrQEadYF8dF97Wm8AHde2nuqbMkN5vVskQLhvFdA,2329
|
228
|
-
janito/tools/adapters/local/remove_directory.py,sha256=DEhHdmwJRl5Yp9eEukIIooMrpATCtXcv5HmaDRn8vH8,1913
|
229
|
-
janito/tools/adapters/local/remove_file.py,sha256=Imra4jGkBfAd6pnUAmbUsjN0exj2vzZWuNRXq_GOMsI,2093
|
230
|
-
janito/tools/adapters/local/replace_text_in_file.py,sha256=zJIDecviF2YRpWxbvhtka4Iaje-QYhcaqQX1PxWolzE,10966
|
231
|
-
janito/tools/adapters/local/run_bash_command.py,sha256=7fABqAeAu7WJwzzwHmT54_m5OSwPMcgpQ74lQhPG7TA,7955
|
232
|
-
janito/tools/adapters/local/run_powershell_command.py,sha256=uQSJVQe40wSGbesyvZxDmIKJthAbDJFaxXm1dEN3gBs,9313
|
233
|
-
janito/tools/adapters/local/show_image.py,sha256=OkdiIkaRhjqPMSF5QFcqjLK-fN1oljo_YQM9TH2ZK_A,2932
|
234
|
-
janito/tools/adapters/local/show_image_grid.py,sha256=w_U04_K0qmCcX8ac6KUcs-UsnfCb-qsXT3-kasr17dM,3000
|
235
|
-
janito/tools/adapters/local/view_file.py,sha256=cBKcbwbfH-UMyvQ7PmYTgsshcFmorjWtyH1kaYi7oNY,7379
|
236
|
-
janito/tools/adapters/local/get_file_outline/__init__.py,sha256=OKV_BHnoD9h-vkcVoW6AHmsuDjjauHPCKNK0nVFl4sU,37
|
237
|
-
janito/tools/adapters/local/get_file_outline/core.py,sha256=25k6a8PaDYxAfxnEAvZvOWg2BgUcgKU_BkzJmZKUMEA,4611
|
238
|
-
janito/tools/adapters/local/get_file_outline/java_outline.py,sha256=_UeUY5JoQEUdlHcK8aqGTqYJl0T2KxIFXPTdwum9gKQ,1825
|
239
|
-
janito/tools/adapters/local/get_file_outline/markdown_outline.py,sha256=bXEBg0D93tEBDNy8t-wh4i7WxsxfpQ2C3dX1_rmtj08,434
|
240
|
-
janito/tools/adapters/local/get_file_outline/python_outline.py,sha256=RAcf9Vxec08lA06drYaNre5HCJ2lTzrRAskZ3rlyE-U,10326
|
241
|
-
janito/tools/adapters/local/get_file_outline/search_outline.py,sha256=bski24TpnJVf3L0TNzkx3HfvaXwttQl4EVkwk2POQOw,1348
|
242
|
-
janito/tools/adapters/local/search_text/__init__.py,sha256=FEYpF5tTtf0fiAyRGIGSn-kV-MJDkhdFIbus16mYW8Y,34
|
243
|
-
janito/tools/adapters/local/search_text/core.py,sha256=Qoid7FESJGVIsFm5oasgv9vZDy0aSzqeJPBWAF2_Edo,7877
|
244
|
-
janito/tools/adapters/local/search_text/match_lines.py,sha256=RLR8fZFP-Q57rY0fTENbMItmt3dJZiYX0otmGHVRjfw,2131
|
245
|
-
janito/tools/adapters/local/search_text/pattern_utils.py,sha256=D7vtAr8oT0tGV0C_UUarAXS9XQtP-MTYmmc8Yg8iVTg,2362
|
246
|
-
janito/tools/adapters/local/search_text/traverse_directory.py,sha256=EpL1qywAV0H29pm8-QsHrjKchKP4i4sRUOENVuNptCo,4000
|
247
|
-
janito/tools/adapters/local/validate_file_syntax/__init__.py,sha256=P53RHmas4BbHL90cMxH9m-RpMCJI8JquoJb0rpkPVVk,29
|
248
|
-
janito/tools/adapters/local/validate_file_syntax/core.py,sha256=oYCpk_kyCbseKG_xX5xQjW91bPSpzzl18TPm7mMpwPI,3714
|
249
|
-
janito/tools/adapters/local/validate_file_syntax/css_validator.py,sha256=jE5d26C_fU9k9azujbGVISn2WIRL-Ys6de4dsCq30bo,1351
|
250
|
-
janito/tools/adapters/local/validate_file_syntax/html_validator.py,sha256=VV93BRcAeUraXHc9dUyH1cs9gRwRwO84K1-L5zbJnYU,3207
|
251
|
-
janito/tools/adapters/local/validate_file_syntax/jinja2_validator.py,sha256=lfM0SsKsFygiEp1IuLNr5jdS7XJyjCLOPw2yo9vl-pY,1763
|
252
|
-
janito/tools/adapters/local/validate_file_syntax/js_validator.py,sha256=42LvgyMVhG9c2EAaSz3J9pu-yuh1oyIvRp0wN2rHiDQ,998
|
253
|
-
janito/tools/adapters/local/validate_file_syntax/json_validator.py,sha256=muCB0-bdxk9zNulzH1It3hWpYzJC3hD8LbxCnE0P5is,150
|
254
|
-
janito/tools/adapters/local/validate_file_syntax/markdown_validator.py,sha256=k4UT88fXvtclygz-nFhCMHJL5sk5WlGD-fP_cWqWMyU,3511
|
255
|
-
janito/tools/adapters/local/validate_file_syntax/ps1_validator.py,sha256=TeIkPt08t_-w2JiKksXHHK9lJNT348ZDkWoSTzMtRrI,1152
|
256
|
-
janito/tools/adapters/local/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
|
257
|
-
janito/tools/adapters/local/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
|
258
|
-
janito/tools/adapters/local/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
|
259
|
-
janito-3.8.0.dist-info/licenses/LICENSE,sha256=dXV4fOF2ZErugtN8l_Nrj5tsRTYgtjE3cgiya0UfBio,11356
|
260
|
-
janito-3.8.0.dist-info/METADATA,sha256=KojxYonxnLshxFtvWLAInVYyzmO2WpRhmgTu6dt8jFM,2312
|
261
|
-
janito-3.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
262
|
-
janito-3.8.0.dist-info/entry_points.txt,sha256=wIo5zZxbmu4fC-ZMrsKD0T0vq7IqkOOLYhrqRGypkx4,48
|
263
|
-
janito-3.8.0.dist-info/top_level.txt,sha256=m0NaVCq0-ivxbazE2-ND0EA9Hmuijj_OGkmCbnBcCig,7
|
264
|
-
janito-3.8.0.dist-info/RECORD,,
|
266
|
+
janito-3.10.0.dist-info/licenses/LICENSE,sha256=dXV4fOF2ZErugtN8l_Nrj5tsRTYgtjE3cgiya0UfBio,11356
|
267
|
+
janito-3.10.0.dist-info/METADATA,sha256=x2KO5oXZMGPqy6ooQbJRkac0DQWGj17lBCBn4WLhYoU,2255
|
268
|
+
janito-3.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
269
|
+
janito-3.10.0.dist-info/entry_points.txt,sha256=wIo5zZxbmu4fC-ZMrsKD0T0vq7IqkOOLYhrqRGypkx4,48
|
270
|
+
janito-3.10.0.dist-info/top_level.txt,sha256=m0NaVCq0-ivxbazE2-ND0EA9Hmuijj_OGkmCbnBcCig,7
|
271
|
+
janito-3.10.0.dist-info/RECORD,,
|
/janito/{tools/adapters/local → plugins/core/filemanager/tools}/validate_file_syntax/__init__.py
RENAMED
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
|