janito 2.7.0__py3-none-any.whl → 2.9.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/__init__.py +0 -1
- janito/__main__.py +0 -1
- janito/_version.py +0 -3
- janito/agent/setup_agent.py +77 -10
- janito/agent/templates/profiles/{system_prompt_template_plain_software_developer.txt.j2 → system_prompt_template_Developer_with_Python_Tools.txt.j2} +5 -1
- janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +3 -12
- janito/cli/__init__.py +0 -1
- janito/cli/chat_mode/bindings.py +1 -1
- janito/cli/chat_mode/chat_entry.py +0 -2
- janito/cli/chat_mode/prompt_style.py +0 -3
- janito/cli/chat_mode/script_runner.py +9 -5
- janito/cli/chat_mode/session.py +100 -37
- janito/cli/chat_mode/session_profile_select.py +61 -52
- janito/cli/chat_mode/shell/commands/__init__.py +1 -5
- janito/cli/chat_mode/shell/commands/_priv_check.py +1 -0
- janito/cli/chat_mode/shell/commands/_priv_status.py +13 -0
- janito/cli/chat_mode/shell/commands/bang.py +10 -3
- janito/cli/chat_mode/shell/commands/conversation_restart.py +24 -7
- janito/cli/chat_mode/shell/commands/execute.py +22 -7
- janito/cli/chat_mode/shell/commands/help.py +4 -1
- janito/cli/chat_mode/shell/commands/model.py +13 -5
- janito/cli/chat_mode/shell/commands/privileges.py +21 -0
- janito/cli/chat_mode/shell/commands/prompt.py +0 -2
- janito/cli/chat_mode/shell/commands/read.py +22 -5
- janito/cli/chat_mode/shell/commands/tools.py +15 -4
- janito/cli/chat_mode/shell/commands/write.py +22 -5
- janito/cli/chat_mode/shell/input_history.py +3 -1
- janito/cli/chat_mode/shell/session/manager.py +0 -2
- janito/cli/chat_mode/toolbar.py +25 -19
- janito/cli/cli_commands/list_config.py +31 -0
- janito/cli/cli_commands/list_models.py +1 -1
- janito/cli/cli_commands/list_profiles.py +79 -0
- janito/cli/cli_commands/list_providers.py +1 -0
- janito/cli/cli_commands/list_tools.py +35 -7
- janito/cli/cli_commands/model_utils.py +5 -3
- janito/cli/cli_commands/show_config.py +16 -11
- janito/cli/cli_commands/show_system_prompt.py +23 -9
- janito/cli/config.py +0 -13
- janito/cli/core/getters.py +16 -1
- janito/cli/core/runner.py +25 -8
- janito/cli/core/setters.py +13 -76
- janito/cli/main_cli.py +60 -27
- janito/cli/prompt_core.py +19 -18
- janito/cli/prompt_setup.py +6 -3
- janito/cli/rich_terminal_reporter.py +19 -5
- janito/cli/single_shot_mode/handler.py +14 -5
- janito/cli/verbose_output.py +5 -1
- janito/config.py +1 -0
- janito/config_manager.py +15 -2
- janito/drivers/azure_openai/driver.py +27 -30
- janito/drivers/openai/driver.py +53 -36
- janito/formatting_token.py +12 -4
- janito/llm/agent.py +15 -6
- janito/llm/driver.py +1 -0
- janito/llm/provider.py +1 -1
- janito/provider_registry.py +31 -70
- janito/providers/__init__.py +1 -0
- janito/providers/anthropic/model_info.py +0 -1
- janito/providers/anthropic/provider.py +9 -14
- janito/providers/azure_openai/provider.py +10 -5
- janito/providers/deepseek/provider.py +5 -4
- janito/providers/google/model_info.py +4 -2
- janito/providers/google/provider.py +11 -5
- janito/providers/groq/__init__.py +1 -0
- janito/providers/groq/model_info.py +45 -0
- janito/providers/groq/provider.py +76 -0
- janito/providers/moonshotai/provider.py +11 -4
- janito/providers/openai/model_info.py +0 -1
- janito/providers/openai/provider.py +6 -7
- janito/tools/__init__.py +2 -0
- janito/tools/adapters/local/__init__.py +2 -1
- janito/tools/adapters/local/adapter.py +21 -4
- janito/tools/adapters/local/ask_user.py +1 -0
- janito/tools/adapters/local/copy_file.py +1 -0
- janito/tools/adapters/local/create_directory.py +1 -0
- janito/tools/adapters/local/create_file.py +1 -0
- janito/tools/adapters/local/delete_text_in_file.py +2 -1
- janito/tools/adapters/local/fetch_url.py +1 -0
- janito/tools/adapters/local/find_files.py +7 -6
- janito/tools/adapters/local/get_file_outline/core.py +1 -0
- janito/tools/adapters/local/get_file_outline/java_outline.py +22 -15
- janito/tools/adapters/local/get_file_outline/search_outline.py +1 -0
- janito/tools/adapters/local/move_file.py +1 -0
- janito/tools/adapters/local/open_html_in_browser.py +15 -5
- janito/tools/adapters/local/open_url.py +1 -0
- janito/tools/adapters/local/python_code_run.py +1 -0
- janito/tools/adapters/local/python_command_run.py +1 -0
- janito/tools/adapters/local/python_file_run.py +1 -0
- janito/tools/adapters/local/read_files.py +19 -4
- janito/tools/adapters/local/remove_directory.py +1 -0
- janito/tools/adapters/local/remove_file.py +1 -0
- janito/tools/adapters/local/replace_text_in_file.py +4 -3
- janito/tools/adapters/local/run_bash_command.py +1 -0
- janito/tools/adapters/local/run_powershell_command.py +1 -0
- janito/tools/adapters/local/search_text/core.py +18 -17
- janito/tools/adapters/local/search_text/match_lines.py +5 -5
- janito/tools/adapters/local/search_text/pattern_utils.py +1 -1
- janito/tools/adapters/local/search_text/traverse_directory.py +7 -7
- janito/tools/adapters/local/validate_file_syntax/core.py +1 -1
- janito/tools/adapters/local/validate_file_syntax/html_validator.py +8 -1
- janito/tools/disabled_tools.py +68 -0
- janito/tools/path_security.py +18 -11
- janito/tools/permissions.py +6 -0
- janito/tools/permissions_parse.py +4 -3
- janito/tools/tool_base.py +11 -5
- janito/tools/tool_use_tracker.py +1 -4
- janito/tools/tool_utils.py +1 -1
- janito/tools/tools_adapter.py +57 -25
- {janito-2.7.0.dist-info → janito-2.9.0.dist-info}/METADATA +11 -19
- janito-2.9.0.dist-info/RECORD +205 -0
- janito/cli/chat_mode/shell/commands/livelogs.py +0 -49
- janito/drivers/mistralai/driver.py +0 -41
- janito/providers/mistralai/model_info.py +0 -37
- janito/providers/mistralai/provider.py +0 -72
- janito/providers/provider_static_info.py +0 -21
- janito-2.7.0.dist-info/RECORD +0 -202
- /janito/agent/templates/profiles/{system_prompt_template_assistant.txt.j2 → system_prompt_template_model_conversation_without_tools_or_context.txt.j2} +0 -0
- {janito-2.7.0.dist-info → janito-2.9.0.dist-info}/WHEEL +0 -0
- {janito-2.7.0.dist-info → janito-2.9.0.dist-info}/entry_points.txt +0 -0
- {janito-2.7.0.dist-info → janito-2.9.0.dist-info}/licenses/LICENSE +0 -0
- {janito-2.7.0.dist-info → janito-2.9.0.dist-info}/top_level.txt +0 -0
@@ -1,37 +0,0 @@
|
|
1
|
-
from janito.llm.model import LLMModelInfo
|
2
|
-
|
3
|
-
MODEL_SPECS = {
|
4
|
-
"mistral-medium-latest": LLMModelInfo(
|
5
|
-
name="mistral-medium-latest",
|
6
|
-
context=32000,
|
7
|
-
max_input=32000,
|
8
|
-
max_cot="N/A",
|
9
|
-
max_response=8192,
|
10
|
-
thinking_supported=True,
|
11
|
-
default_temp=0.2,
|
12
|
-
open="mistralai",
|
13
|
-
driver="MistralAIModelDriver",
|
14
|
-
),
|
15
|
-
"mistral-large-latest": LLMModelInfo(
|
16
|
-
name="mistral-large-latest",
|
17
|
-
context=64000,
|
18
|
-
max_input=64000,
|
19
|
-
max_cot="N/A",
|
20
|
-
max_response=16384,
|
21
|
-
thinking_supported=True,
|
22
|
-
default_temp=0.2,
|
23
|
-
open="mistralai",
|
24
|
-
driver="MistralAIModelDriver",
|
25
|
-
),
|
26
|
-
"mistral-small-latest": LLMModelInfo(
|
27
|
-
name="mistral-small-latest",
|
28
|
-
context=16000,
|
29
|
-
max_input=16000,
|
30
|
-
max_cot="N/A",
|
31
|
-
max_response=4096,
|
32
|
-
thinking_supported=False,
|
33
|
-
default_temp=0.2,
|
34
|
-
open="mistralai",
|
35
|
-
driver="MistralAIModelDriver",
|
36
|
-
),
|
37
|
-
}
|
@@ -1,72 +0,0 @@
|
|
1
|
-
from janito.llm.provider import LLMProvider
|
2
|
-
from janito.llm.model import LLMModelInfo
|
3
|
-
from janito.llm.auth import LLMAuthManager
|
4
|
-
from janito.llm.driver_config import LLMDriverConfig
|
5
|
-
from janito.drivers.mistralai.driver import MistralAIModelDriver
|
6
|
-
from janito.tools import get_local_tools_adapter
|
7
|
-
from janito.providers.registry import LLMProviderRegistry
|
8
|
-
|
9
|
-
from .model_info import MODEL_SPECS
|
10
|
-
|
11
|
-
from janito.drivers.mistralai.driver import MistralAIModelDriver
|
12
|
-
|
13
|
-
available = MistralAIModelDriver.available
|
14
|
-
unavailable_reason = MistralAIModelDriver.unavailable_reason
|
15
|
-
|
16
|
-
|
17
|
-
class MistralAIProvider(LLMProvider):
|
18
|
-
MODEL_SPECS = MODEL_SPECS
|
19
|
-
name = "mistralai"
|
20
|
-
maintainer = "Needs maintainer"
|
21
|
-
|
22
|
-
DEFAULT_MODEL = "mistral-medium-latest"
|
23
|
-
|
24
|
-
def __init__(
|
25
|
-
self, config: LLMDriverConfig = None, auth_manager: LLMAuthManager = None
|
26
|
-
):
|
27
|
-
# Always instantiate a tools adapter so that provider.execute_tool() remains functional
|
28
|
-
# even when the driver cannot be constructed due to missing dependencies.
|
29
|
-
self._tools_adapter = get_local_tools_adapter()
|
30
|
-
if not self.available:
|
31
|
-
self._driver = None
|
32
|
-
return
|
33
|
-
self.auth_manager = auth_manager or LLMAuthManager()
|
34
|
-
self._api_key = self.auth_manager.get_credentials(type(self).name)
|
35
|
-
self._tools_adapter = get_local_tools_adapter()
|
36
|
-
self._info = config or LLMDriverConfig(model=None)
|
37
|
-
if not self._info.model:
|
38
|
-
self._info.model = self.DEFAULT_MODEL
|
39
|
-
if not self._info.api_key:
|
40
|
-
self._info.api_key = self._api_key
|
41
|
-
self.fill_missing_device_info(self._info)
|
42
|
-
self._driver = MistralAIModelDriver(tools_adapter=self._tools_adapter)
|
43
|
-
|
44
|
-
@property
|
45
|
-
def driver(self):
|
46
|
-
if not self.available:
|
47
|
-
raise ImportError(
|
48
|
-
f"MistralAIProvider unavailable: {self.unavailable_reason}"
|
49
|
-
)
|
50
|
-
return self._driver
|
51
|
-
|
52
|
-
@property
|
53
|
-
def available(self):
|
54
|
-
return available
|
55
|
-
|
56
|
-
@property
|
57
|
-
def unavailable_reason(self):
|
58
|
-
return unavailable_reason
|
59
|
-
|
60
|
-
def create_agent(self, tools_adapter=None, agent_name: str = None, **kwargs):
|
61
|
-
from janito.llm.agent import LLMAgent
|
62
|
-
|
63
|
-
# Always create a new driver with the passed-in tools_adapter
|
64
|
-
driver = MistralAIModelDriver(tools_adapter=tools_adapter)
|
65
|
-
return LLMAgent(self, tools_adapter, agent_name=agent_name, **kwargs)
|
66
|
-
|
67
|
-
def execute_tool(self, tool_name: str, event_bus, *args, **kwargs):
|
68
|
-
self._tools_adapter.event_bus = event_bus
|
69
|
-
return self._tools_adapter.execute_by_name(tool_name, *args, **kwargs)
|
70
|
-
|
71
|
-
|
72
|
-
LLMProviderRegistry.register(MistralAIProvider.name, MistralAIProvider)
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# Provider static metadata registry for listing purposes (name, maintainer, and future fields)
|
2
|
-
STATIC_PROVIDER_METADATA = {
|
3
|
-
"openai": {},
|
4
|
-
"moonshotai": {
|
5
|
-
"maintainer": "João Pinto <lamego.pinto@gmail.com>",
|
6
|
-
"note": "MoonshotAI uses OpenAI-compatible API at https://api.moonshot.ai"
|
7
|
-
},
|
8
|
-
"google": {
|
9
|
-
"maintainer": "João Pinto <lamego.pinto@gmail.com>",
|
10
|
-
},
|
11
|
-
"azure_openai": {
|
12
|
-
"maintainer": "João Pinto <lamego.pinto@gmail.com>",
|
13
|
-
},
|
14
|
-
"anthropic": {
|
15
|
-
"maintainer": "Alberto Minetti <alberto.minetti@gmail.com>",
|
16
|
-
},
|
17
|
-
|
18
|
-
"deepseek": {
|
19
|
-
"maintainer": "João Pinto <lamego.pinto@gmail.com>",
|
20
|
-
},
|
21
|
-
}
|
janito-2.7.0.dist-info/RECORD
DELETED
@@ -1,202 +0,0 @@
|
|
1
|
-
janito/__init__.py,sha256=a-k19GVaOMohbtqRbRabUnez6QAxRTtrjZTN0mxz9xM,246
|
2
|
-
janito/__main__.py,sha256=j30WvzMWVYGz-f4-t8bQ5ycTeocF_TmgNcRCm8nZHFc,72
|
3
|
-
janito/_version.py,sha256=HusMaZMU4Mar3xryELb1kHi4ZfhWRfmH4zzivSFTojM,2350
|
4
|
-
janito/config.py,sha256=HJh0CmZEx7AbMQOmFkiYHFNzc-fO7fqpZ9rh6RenxK8,201
|
5
|
-
janito/config_manager.py,sha256=-v28Rybh0KUXU8dZF-ozqHWXn7djAyYxSrJEwXOC7TQ,5047
|
6
|
-
janito/conversation_history.py,sha256=GqqEJElTVONzOMRe-9g25WCMcDi0PF7DOnqGWLTrY_8,897
|
7
|
-
janito/dir_walk_utils.py,sha256=ON9EyVH7Aaik8WtCH5z8DQis9ycdoNVkjNvU16HH498,1193
|
8
|
-
janito/driver_events.py,sha256=51ab7KW_W6fVZVeO0ez-HJFY4NbTI327ZlEmEsEkxQc,3405
|
9
|
-
janito/exceptions.py,sha256=l4AepRdWwAuLp5fUygrBBgO9rpwgfV6JvY1afOdq2pw,913
|
10
|
-
janito/formatting.py,sha256=SMvOmL6bst3KGcI7OLa5D4DE127fQYuHZS3oY8OPsn8,2031
|
11
|
-
janito/formatting_token.py,sha256=ECZ9CNcOfQeutNMTZZTQrKm17pTgNpMAGVsNr7_EEnE,2167
|
12
|
-
janito/gitignore_utils.py,sha256=P3iF9fMWAomqULq2xsoqHtI9uNIFSPcagljrxZshmLw,4110
|
13
|
-
janito/perf_singleton.py,sha256=g1h0Sdf4ydzegeEpJlMhQt4H0GQZ2hryXrdYOTL-b30,113
|
14
|
-
janito/performance_collector.py,sha256=RYu4av16Trj3RljJZ8-2Gbn1KlGdJUosrcVFYtwviNI,6285
|
15
|
-
janito/platform_discovery.py,sha256=JN3kC7hkxdvuj-AyrJTlbbDJjtNHke3fdlZDqGi_uz0,4621
|
16
|
-
janito/provider_config.py,sha256=acn2FEgWsEIyi2AxZiuCLoP2rXDd-nXcP5VB4CZHaeE,3189
|
17
|
-
janito/provider_registry.py,sha256=9uyOJ2YcLYdBIpIuKrrxjf54p6Az4hReR4Db4pMMwIk,7840
|
18
|
-
janito/report_events.py,sha256=q4OR_jTZNfcqaQF_fzTjgqo6_VlUIxSGWfhpT4nJWcw,938
|
19
|
-
janito/shell.bak.zip,sha256=hznHbmgfkAkjuQDJ3w73XPQh05yrtUZQxLmtGbanbYU,22
|
20
|
-
janito/utils.py,sha256=eXSsMgM69YyzahgCNrJQLcEbB8ssLI1MQqaa20ONxbE,376
|
21
|
-
janito/agent/setup_agent.py,sha256=cNn9cgZKWwYgTveRyyFY2ttVSOFk2FFQmtSL-hvGnVY,8874
|
22
|
-
janito/agent/templates/profiles/system_prompt_template_assistant.txt.j2,sha256=dTV9aF8ji2r9dzi-l4b9r95kHrbKmjvnRxk5cVpopN4,28
|
23
|
-
janito/agent/templates/profiles/system_prompt_template_developer.txt.j2,sha256=gIXF3dPgGxQnVqRBnT8r2sUGu7F_Sl0F4YF-TfyOKgI,2586
|
24
|
-
janito/agent/templates/profiles/system_prompt_template_plain_software_developer.txt.j2,sha256=8YDy15xTlLNhoKo1IxC5Pywsb284L5B0xHAhovG5Mgs,2433
|
25
|
-
janito/cli/__init__.py,sha256=1W-QG-5hJIDU8TLler5rlcFBLpr8qQZeGALU4H_e2Zs,196
|
26
|
-
janito/cli/config.py,sha256=t7sdM0I3RD_FZ2ni1xuGMFGzvCLMt3NwJKu3_WtxPUg,1068
|
27
|
-
janito/cli/console.py,sha256=gJolqzWL7jEPLxeuH-CwBDRFpXt976KdZOEAB2tdBDs,64
|
28
|
-
janito/cli/main.py,sha256=s5odou0txf8pzTf1ADk2yV7T5m8B6cejJ81e7iu776U,312
|
29
|
-
janito/cli/main_cli.py,sha256=KKpFTugOJLk6n3kXy_-HfJji1M5-XRV3hViVespunog,12998
|
30
|
-
janito/cli/prompt_core.py,sha256=sZC_mpIKv2cRHhUdwZr6MCQc-AeYUewJ7RWizyv3stU,11678
|
31
|
-
janito/cli/prompt_handler.py,sha256=SnPTlL64noeAMGlI08VBDD5IDD8jlVMIYA4-fS8zVLg,215
|
32
|
-
janito/cli/prompt_setup.py,sha256=PoRXIWEoVJ5DQtOLO0JCz_8cVVWp7zhKXQtXJuRGiQ4,1882
|
33
|
-
janito/cli/rich_terminal_reporter.py,sha256=_1xqmjcl2-untIslEvdT5-5gsp1HYqpTXCc3zZBhKH0,6605
|
34
|
-
janito/cli/utils.py,sha256=plCQiDKIf3V8mFhhX5H9-MF2W86i-xRdWf8Xi117Z0w,677
|
35
|
-
janito/cli/verbose_output.py,sha256=UmB1byT1V6wZvMJDIPfqajhmNcMnnJ3tgYocje5w0x8,7620
|
36
|
-
janito/cli/chat_mode/bindings.py,sha256=cjQ2FoPH4GGjkGEKmj5cXjxg0ubW33QWez52D6WyjMI,975
|
37
|
-
janito/cli/chat_mode/chat_entry.py,sha256=x-ub8md7UEit-VYJP79N_NqL5vgxiQtQg7TZnoPeVYU,479
|
38
|
-
janito/cli/chat_mode/prompt_style.py,sha256=03pVVbro3fZ9QUoU0Q_bqZsDLqmoW0kYzFzk1DNamus,827
|
39
|
-
janito/cli/chat_mode/script_runner.py,sha256=v-QFcVThTuukgfirUXrbvd2InegYfk3I6irTGNC9tLM,6444
|
40
|
-
janito/cli/chat_mode/session.py,sha256=X5_PdSW_MkI7pfX_UGvV-47rKu1CkvZtjtXc_dkJjeo,11808
|
41
|
-
janito/cli/chat_mode/session_profile_select.py,sha256=qOrR2QlNOVX7Ea5wA4k3GFm3DC0Bj0VYQterUZXxmWo,5139
|
42
|
-
janito/cli/chat_mode/toolbar.py,sha256=BqNrIqFEb5uhxMf2XLNb8vZjq9C2_BLnsXPVNKIiwPw,3484
|
43
|
-
janito/cli/chat_mode/shell/autocomplete.py,sha256=lE68MaVaodbA2VfUM0_YLqQVLBJAE_BJsd5cMtwuD-g,793
|
44
|
-
janito/cli/chat_mode/shell/commands.bak.zip,sha256=I7GFjXg2ORT5NzFpicH1vQ3kchhduQsZinzqo0xO8wU,74238
|
45
|
-
janito/cli/chat_mode/shell/input_history.py,sha256=EbfsZWzEkbW3VpWldN6Z885HwJq7QtxOveWaAmTamdg,2562
|
46
|
-
janito/cli/chat_mode/shell/session.bak.zip,sha256=m1GyO3Wy4G4D9sVgRO6ZDyC0VjclsmnEJsiQoer4LzI,5789
|
47
|
-
janito/cli/chat_mode/shell/commands/__init__.py,sha256=T-t6JGDPTf7v6Ap4UT7spC0c0FbQ6YVXSVEesgbjycw,2390
|
48
|
-
janito/cli/chat_mode/shell/commands/_priv_check.py,sha256=LfIa_IbJBIhKT17K2cACbfYEJprFUH-o4BPvNnGyPSE,204
|
49
|
-
janito/cli/chat_mode/shell/commands/bang.py,sha256=PE79ZDKb9l4cFGbHLdJbpBcKmJRvhyFQQcCrtofY0HQ,1746
|
50
|
-
janito/cli/chat_mode/shell/commands/base.py,sha256=I6-SVOcRd7q4PpoutLdrbhbqeUpJic2oyPhOSMgMihA,288
|
51
|
-
janito/cli/chat_mode/shell/commands/clear.py,sha256=wYEHGYcAohUoCJlbEhiXKfDbJvuzAVK4e9uirskIllw,422
|
52
|
-
janito/cli/chat_mode/shell/commands/conversation_restart.py,sha256=oid5wjvE7HoutS5OXzIXkHJUJSPZXbeR8tN2T0qvuI0,3638
|
53
|
-
janito/cli/chat_mode/shell/commands/execute.py,sha256=P1JeTRQDN0nYDO3qeE5NQsrSwY9tTlWUxbphbaGyqbY,2113
|
54
|
-
janito/cli/chat_mode/shell/commands/help.py,sha256=MvjnTskb7_z0aTbPML11Py2XYqBvLymzwIZgwE4bMpI,947
|
55
|
-
janito/cli/chat_mode/shell/commands/history_view.py,sha256=9dyxYpDHjT77LEIikjBQA03Ep3P2AmKXUwUnVsG0OQc,3584
|
56
|
-
janito/cli/chat_mode/shell/commands/lang.py,sha256=uIelDs3gPYDZ9X9gw7iDMmiwefT7TiBo32420pq2tW8,837
|
57
|
-
janito/cli/chat_mode/shell/commands/livelogs.py,sha256=uJI14qyubXEz8m0Cajd-vURPYxC__7p_CNCq6PVOHN0,2142
|
58
|
-
janito/cli/chat_mode/shell/commands/model.py,sha256=2tORoA5vdkAknbS9mnMi03gNKcLEkgmIuHPUHDGWxYo,1390
|
59
|
-
janito/cli/chat_mode/shell/commands/multi.py,sha256=HAAk0fAO3n8KFta3I4hT_scOAlz4SxWDyaNBUJBQ4nc,1985
|
60
|
-
janito/cli/chat_mode/shell/commands/prompt.py,sha256=G3JTHXy1MiZ5TMIY_UrGCOGr9ZIsIE3i7cJ14m7YR4U,1794
|
61
|
-
janito/cli/chat_mode/shell/commands/read.py,sha256=pz1Nfa2xdFXxgwuxPfsW53-VgPRUm67h5ajHIWF4Vm0,1895
|
62
|
-
janito/cli/chat_mode/shell/commands/role.py,sha256=4Mt3okuNwOjqHbNhOFawcWB9KCLkpTDuLoDJFeXr3-E,1079
|
63
|
-
janito/cli/chat_mode/shell/commands/session.py,sha256=9wsw5U24-KJgTT70KAwnGuS8MVPyvpxCJfAt_Io76O0,1574
|
64
|
-
janito/cli/chat_mode/shell/commands/session_control.py,sha256=tmMGJ8IvWoBwSIJu7T6GPnFYFrmXWIG2Gr9tTni4y3U,1307
|
65
|
-
janito/cli/chat_mode/shell/commands/tools.py,sha256=-vkiFrWkfnJlRu102Wk2uR6B9FDZ0m_Lj2YqL9p-lHs,3119
|
66
|
-
janito/cli/chat_mode/shell/commands/utility.py,sha256=K982P-UwgPLzpEvSuSBGwiQ3zC34S_6T2ork_djweQw,847
|
67
|
-
janito/cli/chat_mode/shell/commands/verbose.py,sha256=HDTe0NhdcjBuhh-eJSW8iLPDeeBO95K5iSDAMAljxa4,953
|
68
|
-
janito/cli/chat_mode/shell/commands/write.py,sha256=kBd04L32NVkwEyAi7DoXm6K5RshjB_apQ1q8M08KtLc,1905
|
69
|
-
janito/cli/chat_mode/shell/session/__init__.py,sha256=uTYE_QpZFEn7v9QE5o1LdulpCWa9vmk0OsefbBGWg_c,37
|
70
|
-
janito/cli/chat_mode/shell/session/history.py,sha256=tYav6GgjAZkvWhlI_rfG6OArNqW6Wn2DTv39Hb20QYc,1262
|
71
|
-
janito/cli/chat_mode/shell/session/manager.py,sha256=m6cQe-9SeIqBnnWVEGtZiBtCpStqIwqRzP09XPhJrdM,1005
|
72
|
-
janito/cli/cli_commands/list_models.py,sha256=VN7_DG6aTxaHPrc6_H-OftRXRT1urhf5ze_qJ_SO35U,1116
|
73
|
-
janito/cli/cli_commands/list_providers.py,sha256=AMAVdoS7KN7WA3gaKhZZdfio_zvknu21OLDc6CTFZ34,173
|
74
|
-
janito/cli/cli_commands/list_tools.py,sha256=gzGamUrHvNLNhyKo9-OxX6NoyMCknsAi_5_TkHtJHys,3007
|
75
|
-
janito/cli/cli_commands/model_selection.py,sha256=ANWtwC5glZkGMdaNtARDbEG3QmuBUcDLVxzzC5jeBNo,1643
|
76
|
-
janito/cli/cli_commands/model_utils.py,sha256=ZGIExsv7WMHL_pqh4yeUXIfFGlu0vZE08PF0bCIIIK4,2864
|
77
|
-
janito/cli/cli_commands/set_api_key.py,sha256=iPtWPhS5VeyIlwVX43TGg7OYUwXCcGzugvwoa3KB8A8,605
|
78
|
-
janito/cli/cli_commands/show_config.py,sha256=6j4P2mK1Q7KZGPF9EXV3ascuWRQtpbgAQgRAnNszBJI,2024
|
79
|
-
janito/cli/cli_commands/show_system_prompt.py,sha256=NOXAD9Ma0q20OmKh-CdLrv1tBk6l-nlu65Ky5SJrNK4,5041
|
80
|
-
janito/cli/core/__init__.py,sha256=YH95fhgY9yBX8RgqX9dSrEkl4exjV0T4rbmJ6xUpG-Y,196
|
81
|
-
janito/cli/core/event_logger.py,sha256=1X6lR0Ax7AgF8HlPWFoY5Ystuu7Bh4ooTo78vXzeGB0,2008
|
82
|
-
janito/cli/core/getters.py,sha256=Znw6aF6QUHGu6UWqQHQYu7LvNPPIjOO4SD4yyYaIGnw,1467
|
83
|
-
janito/cli/core/runner.py,sha256=G0hv_62vI7zF1WHTu4sxQlXg3AR9mbrc_vsMiCrj20g,7492
|
84
|
-
janito/cli/core/setters.py,sha256=BsMkrqAnBmwlOiuUhGqiDA2kHb_-p3iNBA8vjE636ds,7519
|
85
|
-
janito/cli/core/unsetters.py,sha256=FEw9gCt0vRvoCt0kRSNfVB2tzi_TqppJIx2nHPP59-k,2012
|
86
|
-
janito/cli/single_shot_mode/__init__.py,sha256=Ct99pKe9tINzVW6oedZJfzfZQKWpXz-weSSCn0hrwHY,115
|
87
|
-
janito/cli/single_shot_mode/handler.py,sha256=BhYRF4FdeZeV_b2P5VWzsuFW9SZHdbcgPSaD9w7yc_Q,3717
|
88
|
-
janito/drivers/dashscope.bak.zip,sha256=9Pv4Xyciju8jO1lEMFVgYXexoZkxmDO3Ig6vw3ODfL8,4936
|
89
|
-
janito/drivers/driver_registry.py,sha256=sbij7R71JJqJVeMfmaU-FKsEuZVO8oEn6Qp8020hdZw,773
|
90
|
-
janito/drivers/openai_responses.bak.zip,sha256=E43eDCHGa2tCtdjzj_pMnWDdnsOZzj8BJTR5tJp8wcM,13352
|
91
|
-
janito/drivers/azure_openai/driver.py,sha256=zQc9xH-RD409okDCfTRwb1QXXb9WzR2bsBfRyrZ5HYc,3936
|
92
|
-
janito/drivers/mistralai/driver.py,sha256=r7iMMAG5V7OmzrtQhVCuK3ueAEzgbgS1qcPDKHTNKoo,1208
|
93
|
-
janito/drivers/openai/README.md,sha256=bgPdaYX0pyotCoJ9t3cJbYM-teQ_YM1DAFEKLCMP32Q,666
|
94
|
-
janito/drivers/openai/driver.py,sha256=BujFkFjNz657pVhXmkkRJVZFzN7vjSxrnY-NnSTaX_0,18114
|
95
|
-
janito/event_bus/__init__.py,sha256=VG6GOhKMBh0O_92D-zW8a3YitJPKDajGgPiFezTXlNE,77
|
96
|
-
janito/event_bus/bus.py,sha256=LokZbAdwcWhWOyKSp7H3Ism57x4EZhxlRPjl3NE4UKU,2847
|
97
|
-
janito/event_bus/event.py,sha256=MtgcBPD7cvCuubiLIyo-BWcsNSO-941HLk6bScHTJtQ,427
|
98
|
-
janito/event_bus/handler.py,sha256=RhBtT1E48VEM2-k8u3HYsESw7VX5qAgiB8ZTJeKXhHc,1322
|
99
|
-
janito/event_bus/queue_bus.py,sha256=l4phun3pxXxi8ZlIq8ChYaiYDVO1PZeXoOzyi3vyu20,1558
|
100
|
-
janito/i18n/__init__.py,sha256=6zCIu6pSQpoMJvIRK9oOD3pkzbNeJik3lFDXse0X6ag,994
|
101
|
-
janito/i18n/messages.py,sha256=fBuwOTFoygyHPkYphm6Y0r1iE8497Z4iryVAmPhMEkg,1851
|
102
|
-
janito/i18n/pt.py,sha256=NlTgpDSftUfFG7FGbs7TK54vQlJVMyaZDHGcWjelwMc,4168
|
103
|
-
janito/llm/README.md,sha256=6GRqCu_a9va5HCB1YqNqbshyWKFyAGlnXugrjom-xj8,1213
|
104
|
-
janito/llm/__init__.py,sha256=dpyVH51qVRCw-PDyAFLAxq0zd4jl5MDcuV6Cri0D-dQ,134
|
105
|
-
janito/llm/agent.py,sha256=OlVNhfyHby4snzJOGUQZiCD_ZDTvUckICf7CDRRBDiY,20589
|
106
|
-
janito/llm/auth.py,sha256=8Dl_orUEPhn2X6XjkO2Nr-j1HFT2YDxk1qJl9hSFI88,2286
|
107
|
-
janito/llm/driver.py,sha256=mepQ00QK0ouK8LHz4blQctUTolzlDatXNWWQEmSdpO8,10037
|
108
|
-
janito/llm/driver_config.py,sha256=OW0ae49EfgKDqaThuDjZBiaN78voNzwiZ6szERMqJos,1406
|
109
|
-
janito/llm/driver_config_builder.py,sha256=BvWGx7vaBR5NyvPY1XNAP3lAgo1uf-T25CSsIo2kkCU,1401
|
110
|
-
janito/llm/driver_input.py,sha256=Zq7IO4KdQPUraeIo6XoOaRy1IdQAyYY15RQw4JU30uA,389
|
111
|
-
janito/llm/message_parts.py,sha256=QY_0kDjaxdoErDgKPRPv1dNkkYJuXIBmHWNLiOEKAH4,1365
|
112
|
-
janito/llm/model.py,sha256=42hjcffZDTuzjAJoVhDcDqwIXm6rUmmi5UwTOYopf5w,1131
|
113
|
-
janito/llm/provider.py,sha256=lfIJnh06F0kf8--Pg_W7ALhkbIzn7N4iItQ93pntyuM,7978
|
114
|
-
janito/providers/__init__.py,sha256=TcK8Kz2byxKfIkam_OKenDqLHy5qeopRdzbgSkFPfWc,327
|
115
|
-
janito/providers/dashscope.bak.zip,sha256=BwXxRmZreEivvRtmqbr5BR62IFVlNjAf4y6DrF2BVJo,5998
|
116
|
-
janito/providers/provider_static_info.py,sha256=N2AH9m7i2Auvyqdrvs2OxCCALJyD4Dv2XkVM6DWU4BU,696
|
117
|
-
janito/providers/registry.py,sha256=Ygwv9eVrTXOKhv0EKxSWQXO5WMHvajWE2Q_Lc3p7dKo,730
|
118
|
-
janito/providers/anthropic/model_info.py,sha256=iLjReBE-B7vAfQUqAiMxGdAGfa1miqMFFwNsyvcG1DU,1208
|
119
|
-
janito/providers/anthropic/provider.py,sha256=R7CTRjbM7rTZ7okCOMBOOLyYDYiE-aMLDgffyitsRmo,3101
|
120
|
-
janito/providers/azure_openai/model_info.py,sha256=TMSqEpQROIIYUGAyulYJ5xGhj7CbLoaKL_JXeLbXaG0,689
|
121
|
-
janito/providers/azure_openai/provider.py,sha256=7RtYYjKa4HYi11XSiB4QQI2czzvpQ2btOWn7i-sHS8g,5154
|
122
|
-
janito/providers/deepseek/__init__.py,sha256=4sISEpq4bJO29vxFK9cfnO-SRUmKoD7oSdeCvz0hVno,36
|
123
|
-
janito/providers/deepseek/model_info.py,sha256=tAlFRtWiyNF_MKZ1gy5_-VNlvqoIwAinv6bAv9dNFsc,465
|
124
|
-
janito/providers/deepseek/provider.py,sha256=5ehIyOOVn7x4kEeU9m8adxSAda9kHHHv3vM44R1MVJ8,3881
|
125
|
-
janito/providers/google/__init__.py,sha256=hE3OGJvLEhvNLhIK_XmCGIdrIj8MKlyGgdOLJ4mdess,38
|
126
|
-
janito/providers/google/model_info.py,sha256=Yt6UffgCmPDvXzegmzy2FVo7pNblwUOl7oC6bSRYOaI,1106
|
127
|
-
janito/providers/google/provider.py,sha256=Qgt8ZcgPl5fQIFplazoGZkqbUjr-JILKs9FtPBmqUkQ,3337
|
128
|
-
janito/providers/mistralai/model_info.py,sha256=Kh0S_3O76fcPGYW-ywmsF4Hhd8011wLpORPLRu3zdlQ,1026
|
129
|
-
janito/providers/mistralai/provider.py,sha256=H7_SHPFq6mAlqG7RmtrOs9kjMfJ78WB336nwyKeug3c,2763
|
130
|
-
janito/providers/moonshotai/__init__.py,sha256=nThTAtynq4O2Iidm95daKOCKXi5APRJYtRK2Wr3SDpM,31
|
131
|
-
janito/providers/moonshotai/model_info.py,sha256=p5_q73Z5YnFbh9-_pXuHrug2DW-7G5Y_9U52dhsS11Q,396
|
132
|
-
janito/providers/moonshotai/provider.py,sha256=Az-BkKXqkm6yu1s7WrBDZQwWFj0CX-Epa9S6s1GX3PE,3568
|
133
|
-
janito/providers/openai/__init__.py,sha256=f0m16-sIqScjL9Mp4A0CQBZx6H3PTEy0cnE08jeaB5U,38
|
134
|
-
janito/providers/openai/model_info.py,sha256=tZ0C3Wl9tfn6ZUcdCKs-ucxg-cbKpqKUlE5uBP92ncE,3386
|
135
|
-
janito/providers/openai/provider.py,sha256=5jYdakoWywkeIzFk-LxjRhsLONRjLQ8fMYiP6lyZpJo,4809
|
136
|
-
janito/providers/openai/schema_generator.py,sha256=hTqeLcPTR8jeKn5DUUpo7b-EZ-V-g1WwXiX7MbHnFzE,2234
|
137
|
-
janito/tools/DOCSTRING_STANDARD.txt,sha256=VLPwNgjxRVD_xZSSVvUZ4H-4bBwM-VKh_RyfzYQsYSs,1735
|
138
|
-
janito/tools/README.md,sha256=5HkLpF5k4PENJER7SlDPRXj0yo9mpHvAHW4uuzhq4ak,115
|
139
|
-
janito/tools/__init__.py,sha256=-hiAfmntq3uVgvLip8hwvsVifj8JoLlmIds4xVt43PM,1167
|
140
|
-
janito/tools/inspect_registry.py,sha256=Jo7PrMPRKLuR-j_mBAk9PBcTzeJf1eQrS1ChGofgQk0,538
|
141
|
-
janito/tools/outline_file.bak.zip,sha256=EeI2cBXCwTdWVgJDNiroxKeYlkjwo6NLKeXz3J-2iZI,15607
|
142
|
-
janito/tools/path_security.py,sha256=1ySpG7naOmS2U5FKHobm18IJe2Q11TMtXCRbyWrh_es,7629
|
143
|
-
janito/tools/permissions.py,sha256=8lsfT7L6pyuvjZAgIXX5WrZZYSjZXPWUBpW7LXDBJ6M,1496
|
144
|
-
janito/tools/permissions_parse.py,sha256=OY_Uojjg_QCp6UsfVk5iHhrKRbeFgzfm8UUIoYDe18I,382
|
145
|
-
janito/tools/tool_base.py,sha256=-yzl7Kki8eNlyyU-Z83ReXR-iJ0RkHpD6uksLYneyoE,3629
|
146
|
-
janito/tools/tool_events.py,sha256=czRtC2TYakAySBZvfHS_Q6_NY_7_krxzAzAL1ggRFWA,1527
|
147
|
-
janito/tools/tool_run_exception.py,sha256=43yWgTaGBGEtRteo6FvTrane6fEVGo9FU1uOdjMRWJE,525
|
148
|
-
janito/tools/tool_use_tracker.py,sha256=Iw9Mz62KPDJLmJkhemVMv2sX0ITpVuwaHeK6G8HP_Jc,2725
|
149
|
-
janito/tools/tool_utils.py,sha256=37jCQe3TuXoiI0411-vBg_CgK-p1Wl4pTTGhLfVXbZY,1223
|
150
|
-
janito/tools/tools_adapter.py,sha256=2wn6PHk4TIeYQJh2-o5Y4DQIQsr-8SA9GWqxtXm8d5Q,13591
|
151
|
-
janito/tools/tools_schema.py,sha256=rGrKrmpPNR07VXHAJ_haGBRRO-YGLOF51BlYRep9AAQ,4415
|
152
|
-
janito/tools/adapters/__init__.py,sha256=XKixOKtUJs1R-rGwGDXSLVLg5-Kp090gvWbsseWT4LI,92
|
153
|
-
janito/tools/adapters/local/__init__.py,sha256=RxD1oge6FKH8DRV8URGI28pCdhHu0za5U18KPbkXG-Q,2170
|
154
|
-
janito/tools/adapters/local/adapter.py,sha256=tEkg8tH-bdARiwtzhpJmOj9A3joQ97GZ_5QRyqFXTC4,6766
|
155
|
-
janito/tools/adapters/local/ask_user.py,sha256=9aR7gwRdrSQGXR8mvuo5x_8SKNk2Ep7GwUDv3latyac,3598
|
156
|
-
janito/tools/adapters/local/copy_file.py,sha256=I2GAMxy55w-fZwNUde_paUD2kof7Szgk9uNoDOW_TDA,3580
|
157
|
-
janito/tools/adapters/local/create_directory.py,sha256=xzLamkrlxO8cmR4VSrKeZmQkMFms3QF38nFtLVUHC8E,2563
|
158
|
-
janito/tools/adapters/local/create_file.py,sha256=yI3m-ou9W5Kw5lzA9FblD4VwNBHZii7GWzvRdnzw_iw,3456
|
159
|
-
janito/tools/adapters/local/delete_text_in_file.py,sha256=OjEhdokSD8MqHXefdqr6lirRzIbVE41Ib9njpF_e3dY,5084
|
160
|
-
janito/tools/adapters/local/fetch_url.py,sha256=1nVM1DWPS7FKV20CwtzyyJF8tFupSZ6rV-xjHtLd2co,3867
|
161
|
-
janito/tools/adapters/local/find_files.py,sha256=Dery91Z7gPJeeV6iBIFo807QQUzTkDIMw659K1EqTns,6017
|
162
|
-
janito/tools/adapters/local/move_file.py,sha256=r4D6fHgMfyh8hV92bP_2vYi7o9Wl1dbhxQbv6QPOrn8,4618
|
163
|
-
janito/tools/adapters/local/open_html_in_browser.py,sha256=sZIcRuAU_fqfPdpvsQNWwC0wAw5p9N86zUyockLd0TE,1823
|
164
|
-
janito/tools/adapters/local/open_url.py,sha256=FOLxRu-41oq_1PG6hPn3-aX-ZbobVlofCHbtq5XuXoo,1400
|
165
|
-
janito/tools/adapters/local/python_code_run.py,sha256=R_Pmq2iU9C5teUigtT8n8ImutGMAzzSGF1-Hd26HyTQ,6679
|
166
|
-
janito/tools/adapters/local/python_command_run.py,sha256=Guk68Z1N_T_8N4GavPYxJsX0431P05iMfDPtqH3eCZM,6619
|
167
|
-
janito/tools/adapters/local/python_file_run.py,sha256=U-mjQLSVLUPcTULclY8THfERpw4ldpdP5P6qcEQI6rQ,6464
|
168
|
-
janito/tools/adapters/local/read_files.py,sha256=9E5tjDHwJMJPr4WZcM6WnUSXkrXgYM7xMBg3yO4t1R0,1837
|
169
|
-
janito/tools/adapters/local/remove_directory.py,sha256=86FhviczQ-Copa49LsYZmkCaVmm5rorO5T1z77nW9P4,1828
|
170
|
-
janito/tools/adapters/local/remove_file.py,sha256=F0Ep6jk72GtIZGaq062i87O_JY151PQtK5TV6ugwZ_g,2088
|
171
|
-
janito/tools/adapters/local/replace_text_in_file.py,sha256=6YGwIwIQxmkxQy7y_gTRNAs7pbzQ92FYA8cQdYmTPXo,10789
|
172
|
-
janito/tools/adapters/local/run_bash_command.py,sha256=-NePyGW4XVXBAUxBn4sdOlOCylmgKaJz_1T3ef8lfCY,7621
|
173
|
-
janito/tools/adapters/local/run_powershell_command.py,sha256=Kt2mHFdrMAPzB7mSydGB1IAXHSYMrn2oWtDecuACc3k,9258
|
174
|
-
janito/tools/adapters/local/view_file.py,sha256=-6Li0SegDUcUdH9jAulunQZj-Bm4A2MhSVbmtBFXtXQ,7137
|
175
|
-
janito/tools/adapters/local/get_file_outline/__init__.py,sha256=OKV_BHnoD9h-vkcVoW6AHmsuDjjauHPCKNK0nVFl4sU,37
|
176
|
-
janito/tools/adapters/local/get_file_outline/core.py,sha256=BQuF2vwsXe2vJpFFs_K-I9FgylIiXrOZ5cK3p3t3wJs,4371
|
177
|
-
janito/tools/adapters/local/get_file_outline/java_outline.py,sha256=5xCX7zMOpTljwNTxKmc4ewTnCykCOC9TDd62gZzP_BU,1685
|
178
|
-
janito/tools/adapters/local/get_file_outline/markdown_outline.py,sha256=bXEBg0D93tEBDNy8t-wh4i7WxsxfpQ2C3dX1_rmtj08,434
|
179
|
-
janito/tools/adapters/local/get_file_outline/python_outline.py,sha256=RAcf9Vxec08lA06drYaNre5HCJ2lTzrRAskZ3rlyE-U,10326
|
180
|
-
janito/tools/adapters/local/get_file_outline/search_outline.py,sha256=am8f3u6FXQD5TJbaFqiZAu2WoJBG_e71Coq9rSrBW3o,1195
|
181
|
-
janito/tools/adapters/local/search_text/__init__.py,sha256=FEYpF5tTtf0fiAyRGIGSn-kV-MJDkhdFIbus16mYW8Y,34
|
182
|
-
janito/tools/adapters/local/search_text/core.py,sha256=xuaZstYmLp0rhXoNpNFItoshd-dc_9nFP5pFSEm2cvI,7701
|
183
|
-
janito/tools/adapters/local/search_text/match_lines.py,sha256=2l0r8_1l5gnmu9vJSdkxu0JwbPNHx7m84Ei2s4V0hcQ,2141
|
184
|
-
janito/tools/adapters/local/search_text/pattern_utils.py,sha256=wQm78OCmpJd0E0-P9tf6skPIayxLyg-Oo23vEkY-Jvg,2364
|
185
|
-
janito/tools/adapters/local/search_text/traverse_directory.py,sha256=AX-YCqcmg-K8I-85yTj45Q4nbnDuzYH6W-WXWeRN3w4,4014
|
186
|
-
janito/tools/adapters/local/validate_file_syntax/__init__.py,sha256=P53RHmas4BbHL90cMxH9m-RpMCJI8JquoJb0rpkPVVk,29
|
187
|
-
janito/tools/adapters/local/validate_file_syntax/core.py,sha256=5mZBeMcX1XgUSKI4i_ZcX31GbBx0pKAVM50y4mznwYk,3334
|
188
|
-
janito/tools/adapters/local/validate_file_syntax/css_validator.py,sha256=jE5d26C_fU9k9azujbGVISn2WIRL-Ys6de4dsCq30bo,1351
|
189
|
-
janito/tools/adapters/local/validate_file_syntax/html_validator.py,sha256=pJ5aWI8UKAVr3A2Wr5PWoM1aUNV9i0aS45e8LUEz5Tw,3029
|
190
|
-
janito/tools/adapters/local/validate_file_syntax/js_validator.py,sha256=42LvgyMVhG9c2EAaSz3J9pu-yuh1oyIvRp0wN2rHiDQ,998
|
191
|
-
janito/tools/adapters/local/validate_file_syntax/json_validator.py,sha256=muCB0-bdxk9zNulzH1It3hWpYzJC3hD8LbxCnE0P5is,150
|
192
|
-
janito/tools/adapters/local/validate_file_syntax/markdown_validator.py,sha256=k4UT88fXvtclygz-nFhCMHJL5sk5WlGD-fP_cWqWMyU,3511
|
193
|
-
janito/tools/adapters/local/validate_file_syntax/ps1_validator.py,sha256=TeIkPt08t_-w2JiKksXHHK9lJNT348ZDkWoSTzMtRrI,1152
|
194
|
-
janito/tools/adapters/local/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
|
195
|
-
janito/tools/adapters/local/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
|
196
|
-
janito/tools/adapters/local/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
|
197
|
-
janito-2.7.0.dist-info/licenses/LICENSE,sha256=GSAKapQH5ZIGWlpQTA7v5YrfECyaxaohUb1vJX-qepw,1090
|
198
|
-
janito-2.7.0.dist-info/METADATA,sha256=GmVKiA7suLoBwhsTdE2H5aQoxeZP-6pqEgSF1UCsTuc,16780
|
199
|
-
janito-2.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
200
|
-
janito-2.7.0.dist-info/entry_points.txt,sha256=wIo5zZxbmu4fC-ZMrsKD0T0vq7IqkOOLYhrqRGypkx4,48
|
201
|
-
janito-2.7.0.dist-info/top_level.txt,sha256=m0NaVCq0-ivxbazE2-ND0EA9Hmuijj_OGkmCbnBcCig,7
|
202
|
-
janito-2.7.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|