klaude-code 1.2.1__py3-none-any.whl → 1.2.3__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.
- klaude_code/cli/main.py +9 -4
- klaude_code/cli/runtime.py +42 -43
- klaude_code/command/__init__.py +7 -5
- klaude_code/command/clear_cmd.py +6 -29
- klaude_code/command/command_abc.py +44 -8
- klaude_code/command/diff_cmd.py +33 -27
- klaude_code/command/export_cmd.py +18 -26
- klaude_code/command/help_cmd.py +10 -8
- klaude_code/command/model_cmd.py +11 -40
- klaude_code/command/{prompt-update-dev-doc.md → prompt-dev-docs-update.md} +3 -2
- klaude_code/command/{prompt-dev-doc.md → prompt-dev-docs.md} +3 -2
- klaude_code/command/prompt-init.md +2 -5
- klaude_code/command/prompt_command.py +6 -6
- klaude_code/command/refresh_cmd.py +4 -5
- klaude_code/command/registry.py +16 -19
- klaude_code/command/terminal_setup_cmd.py +12 -11
- klaude_code/config/__init__.py +4 -0
- klaude_code/config/config.py +25 -26
- klaude_code/config/list_model.py +8 -3
- klaude_code/config/select_model.py +1 -1
- klaude_code/const/__init__.py +1 -1
- klaude_code/core/__init__.py +0 -3
- klaude_code/core/agent.py +25 -50
- klaude_code/core/executor.py +268 -101
- klaude_code/core/prompt.py +12 -12
- klaude_code/core/{prompt → prompts}/prompt-gemini.md +1 -1
- klaude_code/core/reminders.py +76 -95
- klaude_code/core/task.py +21 -14
- klaude_code/core/tool/__init__.py +45 -11
- klaude_code/core/tool/file/apply_patch.py +5 -1
- klaude_code/core/tool/file/apply_patch_tool.py +11 -13
- klaude_code/core/tool/file/edit_tool.py +27 -23
- klaude_code/core/tool/file/multi_edit_tool.py +15 -17
- klaude_code/core/tool/file/read_tool.py +41 -36
- klaude_code/core/tool/file/write_tool.py +13 -15
- klaude_code/core/tool/memory/memory_tool.py +85 -68
- klaude_code/core/tool/memory/skill_tool.py +10 -12
- klaude_code/core/tool/shell/bash_tool.py +24 -22
- klaude_code/core/tool/shell/command_safety.py +12 -1
- klaude_code/core/tool/sub_agent_tool.py +11 -12
- klaude_code/core/tool/todo/todo_write_tool.py +21 -28
- klaude_code/core/tool/todo/update_plan_tool.py +14 -24
- klaude_code/core/tool/tool_abc.py +3 -4
- klaude_code/core/tool/tool_context.py +7 -7
- klaude_code/core/tool/tool_registry.py +30 -47
- klaude_code/core/tool/tool_runner.py +35 -43
- klaude_code/core/tool/truncation.py +14 -20
- klaude_code/core/tool/web/mermaid_tool.py +12 -14
- klaude_code/core/tool/web/web_fetch_tool.py +15 -17
- klaude_code/core/turn.py +19 -7
- klaude_code/llm/__init__.py +3 -4
- klaude_code/llm/anthropic/client.py +30 -46
- klaude_code/llm/anthropic/input.py +4 -11
- klaude_code/llm/client.py +29 -8
- klaude_code/llm/input_common.py +66 -36
- klaude_code/llm/openai_compatible/client.py +42 -84
- klaude_code/llm/openai_compatible/input.py +11 -16
- klaude_code/llm/openai_compatible/tool_call_accumulator.py +2 -2
- klaude_code/llm/openrouter/client.py +40 -289
- klaude_code/llm/openrouter/input.py +13 -35
- klaude_code/llm/openrouter/reasoning_handler.py +209 -0
- klaude_code/llm/registry.py +5 -75
- klaude_code/llm/responses/client.py +34 -55
- klaude_code/llm/responses/input.py +24 -26
- klaude_code/llm/usage.py +109 -0
- klaude_code/protocol/__init__.py +4 -0
- klaude_code/protocol/events.py +3 -2
- klaude_code/protocol/{llm_parameter.py → llm_param.py} +12 -32
- klaude_code/protocol/model.py +49 -4
- klaude_code/protocol/op.py +18 -16
- klaude_code/protocol/op_handler.py +28 -0
- klaude_code/{core → protocol}/sub_agent.py +7 -0
- klaude_code/session/export.py +150 -70
- klaude_code/session/session.py +28 -14
- klaude_code/session/templates/export_session.html +180 -42
- klaude_code/trace/__init__.py +2 -2
- klaude_code/trace/log.py +11 -5
- klaude_code/ui/__init__.py +91 -8
- klaude_code/ui/core/__init__.py +1 -0
- klaude_code/ui/core/display.py +103 -0
- klaude_code/ui/core/input.py +71 -0
- klaude_code/ui/modes/__init__.py +1 -0
- klaude_code/ui/modes/debug/__init__.py +1 -0
- klaude_code/ui/{base/debug_event_display.py → modes/debug/display.py} +9 -5
- klaude_code/ui/modes/exec/__init__.py +1 -0
- klaude_code/ui/{base/exec_display.py → modes/exec/display.py} +28 -2
- klaude_code/ui/{repl → modes/repl}/__init__.py +5 -6
- klaude_code/ui/modes/repl/clipboard.py +152 -0
- klaude_code/ui/modes/repl/completers.py +429 -0
- klaude_code/ui/modes/repl/display.py +60 -0
- klaude_code/ui/modes/repl/event_handler.py +375 -0
- klaude_code/ui/modes/repl/input_prompt_toolkit.py +198 -0
- klaude_code/ui/modes/repl/key_bindings.py +170 -0
- klaude_code/ui/{repl → modes/repl}/renderer.py +109 -132
- klaude_code/ui/renderers/assistant.py +21 -0
- klaude_code/ui/renderers/common.py +0 -16
- klaude_code/ui/renderers/developer.py +18 -18
- klaude_code/ui/renderers/diffs.py +36 -14
- klaude_code/ui/renderers/errors.py +1 -1
- klaude_code/ui/renderers/metadata.py +50 -27
- klaude_code/ui/renderers/sub_agent.py +43 -9
- klaude_code/ui/renderers/thinking.py +33 -1
- klaude_code/ui/renderers/tools.py +212 -20
- klaude_code/ui/renderers/user_input.py +19 -23
- klaude_code/ui/rich/__init__.py +1 -0
- klaude_code/ui/{rich_ext → rich}/searchable_text.py +3 -1
- klaude_code/ui/{renderers → rich}/status.py +29 -18
- klaude_code/ui/{base → rich}/theme.py +8 -2
- klaude_code/ui/terminal/__init__.py +1 -0
- klaude_code/ui/{base/terminal_color.py → terminal/color.py} +4 -1
- klaude_code/ui/{base/terminal_control.py → terminal/control.py} +1 -0
- klaude_code/ui/{base/terminal_notifier.py → terminal/notifier.py} +5 -2
- klaude_code/ui/utils/__init__.py +1 -0
- klaude_code/ui/{base/utils.py → utils/common.py} +35 -3
- {klaude_code-1.2.1.dist-info → klaude_code-1.2.3.dist-info}/METADATA +1 -1
- klaude_code-1.2.3.dist-info/RECORD +161 -0
- klaude_code/core/clipboard_manifest.py +0 -124
- klaude_code/llm/openrouter/tool_call_accumulator.py +0 -80
- klaude_code/ui/base/__init__.py +0 -1
- klaude_code/ui/base/display_abc.py +0 -36
- klaude_code/ui/base/input_abc.py +0 -20
- klaude_code/ui/repl/display.py +0 -36
- klaude_code/ui/repl/event_handler.py +0 -247
- klaude_code/ui/repl/input.py +0 -773
- klaude_code/ui/rich_ext/__init__.py +0 -1
- klaude_code-1.2.1.dist-info/RECORD +0 -151
- /klaude_code/core/{prompt → prompts}/prompt-claude-code.md +0 -0
- /klaude_code/core/{prompt → prompts}/prompt-codex.md +0 -0
- /klaude_code/core/{prompt → prompts}/prompt-subagent-explore.md +0 -0
- /klaude_code/core/{prompt → prompts}/prompt-subagent-oracle.md +0 -0
- /klaude_code/core/{prompt → prompts}/prompt-subagent-webfetch.md +0 -0
- /klaude_code/core/{prompt → prompts}/prompt-subagent.md +0 -0
- /klaude_code/ui/{base → core}/stage_manager.py +0 -0
- /klaude_code/ui/{rich_ext → rich}/live.py +0 -0
- /klaude_code/ui/{rich_ext → rich}/markdown.py +0 -0
- /klaude_code/ui/{rich_ext → rich}/quote.py +0 -0
- /klaude_code/ui/{base → terminal}/progress_bar.py +0 -0
- /klaude_code/ui/{base → utils}/debouncer.py +0 -0
- {klaude_code-1.2.1.dist-info → klaude_code-1.2.3.dist-info}/WHEEL +0 -0
- {klaude_code-1.2.1.dist-info → klaude_code-1.2.3.dist-info}/entry_points.txt +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Rich extension components and widgets
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
klaude_code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
klaude_code/cli/__init__.py,sha256=YzlAoWAr5rx5oe6B_4zPxRFS4QaZauuy1AFwampP5fg,45
|
|
3
|
-
klaude_code/cli/main.py,sha256=D5Wsozscq7-CpUji2Xl21hMudp-wbK9Ff7L9fybux_A,9157
|
|
4
|
-
klaude_code/cli/runtime.py,sha256=4nUPMkwszdq267mEDbXYno_B2e3J12fI8stMnpUjm2s,12415
|
|
5
|
-
klaude_code/cli/session_cmd.py,sha256=cIBm3uUurke-TfBvQHz9mGW29LOAh22FIpXVyypnwDo,2549
|
|
6
|
-
klaude_code/command/__init__.py,sha256=VrMOzZGrMvH8Ez7WR3uYUir7JBJqv5cpIEZe2AN2ofQ,984
|
|
7
|
-
klaude_code/command/clear_cmd.py,sha256=gUDUXmTXLgXX5JoXbgMEryXTq6GfLqLzvHTwn8JzCbU,1506
|
|
8
|
-
klaude_code/command/command_abc.py,sha256=PHeBIAju9xZwyaTfCwQV1SrQ3x_TAshbJBtR_8pw5YE,1629
|
|
9
|
-
klaude_code/command/diff_cmd.py,sha256=H99TOb8ni_xYabb6vUgd0uvnvnVNqgCQF8CntaWM1yU,5093
|
|
10
|
-
klaude_code/command/export_cmd.py,sha256=Q-VvMBcnDnqTq7ZajNjE2CuJZOJys8WSTHK8N25zMm0,3694
|
|
11
|
-
klaude_code/command/help_cmd.py,sha256=cZci1AT0EH3TdMpYEpkkgY3t_6iGLOl7UuVOKENr4B0,1719
|
|
12
|
-
klaude_code/command/model_cmd.py,sha256=4CoG1cZGv4jj5qtKqreJQfLIsemct0JaGWhB3N_08Rw,2593
|
|
13
|
-
klaude_code/command/prompt-dev-doc.md,sha256=hV2xvPODmMrDI4mNcN7dDo3LbjFBDhanTZAlj9t3FLs,1836
|
|
14
|
-
klaude_code/command/prompt-init.md,sha256=9wxYo0eyPGH4zTIpq_2Jzusjn7U6JluFbVsupmYQyiA,1867
|
|
15
|
-
klaude_code/command/prompt-update-dev-doc.md,sha256=5O_WeRma0CidTamEFaIPElHtDipL9pxstB6856thgxE,1843
|
|
16
|
-
klaude_code/command/prompt_command.py,sha256=kwlYTYpxwur9NtkCuwO1rrkU5ST2uBJodVlbhMi7gYs,2356
|
|
17
|
-
klaude_code/command/refresh_cmd.py,sha256=Ah3QylA53iUnL2K5Co9NIXAFLC4SH3iYge9192nMtwc,1308
|
|
18
|
-
klaude_code/command/registry.py,sha256=lyITEhgPldQ6aYL1JuUDdmXCLIJQ70FKQdyqk8fu8kY,3627
|
|
19
|
-
klaude_code/command/terminal_setup_cmd.py,sha256=o89agIm5O11FJJGPVhvVv1I7qd91Ic3HGeS2BQT4rpw,10984
|
|
20
|
-
klaude_code/config/__init__.py,sha256=D2oE9-1JH1FJl1pQp-81nnT1GKjfQQu1vbwHCzrDmD4,120
|
|
21
|
-
klaude_code/config/config.py,sha256=9wnloeZ1Fr7gBFXTWYyee3C4CuGmHJt8GTvjBMIF9kU,6387
|
|
22
|
-
klaude_code/config/list_model.py,sha256=D4R92WjXdcjT2VLAZQatwHr4XMl0H7CWX-_fyKGEx4E,6145
|
|
23
|
-
klaude_code/config/select_model.py,sha256=WhesnwWn27hW_r79f8uNmM8TPAnIjmLCVx9blM_OKoE,2569
|
|
24
|
-
klaude_code/const/__init__.py,sha256=vdWKXJuOVDWJ6aDIqGfikqLFP-WOxoNSX2qXXIImxMA,3980
|
|
25
|
-
klaude_code/core/__init__.py,sha256=Kp3tLIENUVEvRGAl7p5PdiHH7P8nBNLYHe-SbC3BuKo,46
|
|
26
|
-
klaude_code/core/agent.py,sha256=QYo9QQ11Y-i5dZuO8fCAT12iMegrxuzsie380vwOrKo,6992
|
|
27
|
-
klaude_code/core/clipboard_manifest.py,sha256=T-2Q4gvVqtfNO5pMqXdb2SzUGlmUR1KHRkHW80Js4EA,4036
|
|
28
|
-
klaude_code/core/executor.py,sha256=Av82Uteem7cuXMyRtHvHOMBdLsegTqUyctP7d9rzSu8,17904
|
|
29
|
-
klaude_code/core/prompt/prompt-claude-code.md,sha256=3OY5ShcYPp8f0XrIl-3pBVIDZkweWsLzDHy5ldnSOJc,8954
|
|
30
|
-
klaude_code/core/prompt/prompt-codex.md,sha256=jNi593_4L3EoMvjS0TwltF2b684gtDBsYHa9npxO34A,24239
|
|
31
|
-
klaude_code/core/prompt/prompt-gemini.md,sha256=m7hlCrWalP3JJ_ooPINGIH-ltjgY0wCJ1GFoKiejyYM,3867
|
|
32
|
-
klaude_code/core/prompt/prompt-subagent-explore.md,sha256=OxZzGodc9BmMVkrgtFHzWXoWGj_lMtyn4r1DwopgW8I,2002
|
|
33
|
-
klaude_code/core/prompt/prompt-subagent-oracle.md,sha256=hGtyDm_6UhJZUJwfXt5A-170is1KMHls85fEEo45z-w,1376
|
|
34
|
-
klaude_code/core/prompt/prompt-subagent-webfetch.md,sha256=kHtJINbCRiRDrip_q6idHHU3CwbDfrVlpgtSZvugOWI,2304
|
|
35
|
-
klaude_code/core/prompt/prompt-subagent.md,sha256=dmmdsOenbAOfqG6FmdR88spOLZkXmntDBs-cmZ9DN_g,897
|
|
36
|
-
klaude_code/core/prompt.py,sha256=XK9cv4GpjZKzPoiSeyrYufqYx-5t7xIizNYVmWQ8_0s,2816
|
|
37
|
-
klaude_code/core/reminders.py,sha256=FHIYv3R1E4GaqV7DV4ifxR9SNdjzXWftx5-gzJtGdTA,18933
|
|
38
|
-
klaude_code/core/sub_agent.py,sha256=BjOD9xjqLrLTqNAiPwQMXAr_SmjSd4M0AXGljAgEM_M,13101
|
|
39
|
-
klaude_code/core/task.py,sha256=Iw951U3q31D0pZQar232pwJ1c2Oo1ZiSfqSByHqlzOg,9541
|
|
40
|
-
klaude_code/core/tool/__init__.py,sha256=PW4CPzcKkxerzQsHPA1a8OSom7-xJwGjA0L6musc7Mc,1308
|
|
41
|
-
klaude_code/core/tool/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
klaude_code/core/tool/file/apply_patch.py,sha256=HCH1UFiE7X0Ynjfn1NcIcAeWI3savemQPVUbFWXeV0c,17242
|
|
43
|
-
klaude_code/core/tool/file/apply_patch_tool.md,sha256=KVDsjUiLDa97gym0NrZNVG4jA1_zN-2i-B3upVQyOhU,59
|
|
44
|
-
klaude_code/core/tool/file/apply_patch_tool.py,sha256=w863ZMi3GNmhgw7piOjIhRZG603kBpM8XxeGUTzkddE,8323
|
|
45
|
-
klaude_code/core/tool/file/edit_tool.md,sha256=rEcUjJuPC46t1nXWjTDxplDcxWDbzTWsr6_bYt5_aRI,1110
|
|
46
|
-
klaude_code/core/tool/file/edit_tool.py,sha256=SUPGmcjDJvKlRdkZJuHW3Rre-3c1tuCNoI7knfiEVDk,10477
|
|
47
|
-
klaude_code/core/tool/file/multi_edit_tool.md,sha256=4G39b-jGdJdGGbBTj7R6tcUfcui9tXn6CLQ5uaX5y1M,2485
|
|
48
|
-
klaude_code/core/tool/file/multi_edit_tool.py,sha256=j_34HzUbBpsanSRvNasp5vosgjr_6qOobXhJHeAllVg,7475
|
|
49
|
-
klaude_code/core/tool/file/read_tool.md,sha256=FeRW9WMUNCtgbezjohvSJjFLZhQd1EaHVcjCI4eQHf4,1472
|
|
50
|
-
klaude_code/core/tool/file/read_tool.py,sha256=DFJJCJjEB7N4d9Z2BDm0hyOCzk1r-GPKSgvEEwBNKYA,12765
|
|
51
|
-
klaude_code/core/tool/file/write_tool.md,sha256=CNnYgtieUasuHdpXLDpTEsqe492Pf7v75M4RQ3oIer8,613
|
|
52
|
-
klaude_code/core/tool/file/write_tool.py,sha256=xC-4MXBKk9Y2ui9d7Mhtq-r7rSwdkRGzARhBNsZ_n0A,4934
|
|
53
|
-
klaude_code/core/tool/memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
-
klaude_code/core/tool/memory/memory_tool.md,sha256=LNpu2kStqcfDA7AXj7IiQqgC6_Yf5kQm06fSVgyN4Jw,1011
|
|
55
|
-
klaude_code/core/tool/memory/memory_tool.py,sha256=6-1T8CBt7Gl3-kEDAZjeVTZKAFMc7NAfxL5i_r_9QJ4,18426
|
|
56
|
-
klaude_code/core/tool/memory/skill_loader.py,sha256=AOFU5RQfR6GAKemHEgI40F-X8t8yCnSKsS8Oi6nfZtA,8567
|
|
57
|
-
klaude_code/core/tool/memory/skill_tool.md,sha256=UfjJK5EGAd3mf7ym5rIrRdPyV3kBTxNnwzOjNnHOBrE,973
|
|
58
|
-
klaude_code/core/tool/memory/skill_tool.py,sha256=o8kL0_YgZtsoYv1UivJ9a8E5vu1OSENEt_2oODRIAfE,3247
|
|
59
|
-
klaude_code/core/tool/shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
-
klaude_code/core/tool/shell/bash_tool.md,sha256=ILKpnRCBTkU2uSDEdZQjNYo1l6hsM4TO-3RD5zWC61c,3935
|
|
61
|
-
klaude_code/core/tool/shell/bash_tool.py,sha256=6cDbiRTb8LGvKWyZQffgve2Q60StdtlJ1jdgzn7_veQ,4404
|
|
62
|
-
klaude_code/core/tool/shell/command_safety.py,sha256=UOI92XP0p6OENGgThnOE7Z8UzBLJa94hIalt1A7Ln1o,21188
|
|
63
|
-
klaude_code/core/tool/sub_agent_tool.py,sha256=hqCf-Fe-vPDclUGY5FANZa8K3BP2H87-KnCgOa_jDvE,2810
|
|
64
|
-
klaude_code/core/tool/todo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
-
klaude_code/core/tool/todo/todo_write_tool.md,sha256=AJ2OkZGcccQYDXkydPAr5JI2SExBF8qJd0rXsHySLps,9711
|
|
66
|
-
klaude_code/core/tool/todo/todo_write_tool.py,sha256=RZ0uIQf6JBifGR8UuOtZEuvkg8P8qqIhy7guzLYzbnQ,4575
|
|
67
|
-
klaude_code/core/tool/todo/update_plan_tool.md,sha256=OoEF4voHHd5J3VDv7tq3UCHdXApkBvxdHXUf5tVOkE8,157
|
|
68
|
-
klaude_code/core/tool/todo/update_plan_tool.py,sha256=V1N54npv9kw2z-M2NJn6PhElizU7cxWfvFNtOo8L2R4,3984
|
|
69
|
-
klaude_code/core/tool/tool_abc.py,sha256=283QXt_L7YC3a1WVXDRHiqqdjOmi0rYGWjhskCWgSdo,777
|
|
70
|
-
klaude_code/core/tool/tool_context.py,sha256=h95fGPLvgXnVtOinNBT_BHrXboM6twsbjRo4Pvu-63E,3743
|
|
71
|
-
klaude_code/core/tool/tool_registry.py,sha256=ynba1YvWZ30-DtUUjYGIuiGQLfDz2eSXM6aXA9MPFHU,2617
|
|
72
|
-
klaude_code/core/tool/tool_runner.py,sha256=CpAQHAn-9BouDcD3V6ARqGsP4ZrGxas4jeiklgXVpOs,9927
|
|
73
|
-
klaude_code/core/tool/truncation.py,sha256=Kef-SKmCPX25ie9zSINI5FSfhCumagFv0WZOMqIwXcI,6546
|
|
74
|
-
klaude_code/core/tool/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
klaude_code/core/tool/web/mermaid_tool.md,sha256=Ketpxpr7lz8238p5Q7ZzcyWchWd4dU68u708-dxaZds,978
|
|
76
|
-
klaude_code/core/tool/web/mermaid_tool.py,sha256=VIeHygQBvXoJCxp6cjvUlYmIk7OM1l4mXA3Izd2_4eA,2846
|
|
77
|
-
klaude_code/core/tool/web/web_fetch_tool.md,sha256=_5U-LSoI86rD26nPb0D5BQCr6hj8eyF0UELSiyLznCA,347
|
|
78
|
-
klaude_code/core/tool/web/web_fetch_tool.py,sha256=1JtZ_fAEYihTyw5lV2bZU-fxRml3OqFnB7qTKW8rek0,4970
|
|
79
|
-
klaude_code/core/turn.py,sha256=ASkmUMCpUVZ7z4S7u-edWp7g2vbJJYR1nsEuXRM9_xQ,7972
|
|
80
|
-
klaude_code/llm/__init__.py,sha256=612WvATVfn9PARcoEW3AGYfCL2TWGn8yN_6I_cUA298,581
|
|
81
|
-
klaude_code/llm/anthropic/__init__.py,sha256=PWETvaeNAAX3ue0ww1uRUIxTJG0RpWiutkn7MlwKxBs,67
|
|
82
|
-
klaude_code/llm/anthropic/client.py,sha256=su0nT5SYKhSeaHKpDbjMrT1XbFUF_6VkqBMBYgyBPnI,11470
|
|
83
|
-
klaude_code/llm/anthropic/input.py,sha256=w-VVg5d3jeyF8FWTWuZO2KfqBXlS4tR2eiwZDadFxYE,7460
|
|
84
|
-
klaude_code/llm/client.py,sha256=xqQxPlxSevtpmaBgIc7ox_xdhvUclnAY2NbK42ezhnI,877
|
|
85
|
-
klaude_code/llm/input_common.py,sha256=NrO0GV7NO3SgPVlY7JXKoWroMW7ocknrQuGXZM0Wwos,7549
|
|
86
|
-
klaude_code/llm/openai_compatible/__init__.py,sha256=ACGpnki7k53mMcCl591aw99pm9jZOZk0ghr7atOfNps,81
|
|
87
|
-
klaude_code/llm/openai_compatible/client.py,sha256=tk6vsXxBAACux4D0Fj1Lc1FHkwUKlpR9h0sr3MfziOk,10731
|
|
88
|
-
klaude_code/llm/openai_compatible/input.py,sha256=EYOElM3jdQkYCZS9hNcOCIx95XWdlZ6DLNrlMP8EjHA,3693
|
|
89
|
-
klaude_code/llm/openai_compatible/tool_call_accumulator.py,sha256=30Ct67-1tqJgCL3erYIODP-3KFKSKbC40whU1F1i7Hk,4055
|
|
90
|
-
klaude_code/llm/openrouter/__init__.py,sha256=_As8lHjwj6vapQhLorZttTpukk5ZiCdhFdGT38_ASPo,69
|
|
91
|
-
klaude_code/llm/openrouter/client.py,sha256=scCNdigrv2qKCFbXbNZ6pwYqpzXMQ5215gjHeggti6I,18617
|
|
92
|
-
klaude_code/llm/openrouter/input.py,sha256=_CEjWA8xz2ZEVG7KL6EjbD2y6WQ-zbJjWlZ9-6B0UtY,6333
|
|
93
|
-
klaude_code/llm/openrouter/tool_call_accumulator.py,sha256=30Ct67-1tqJgCL3erYIODP-3KFKSKbC40whU1F1i7Hk,4055
|
|
94
|
-
klaude_code/llm/registry.py,sha256=tXSmhRHfBdZ1PRx6SWHAGXDs6jiNhV3ibNKGThV2S0I,3156
|
|
95
|
-
klaude_code/llm/responses/__init__.py,sha256=WsiyvnNiIytaYcaAqNiB8GI-5zcpjjeODPbMlteeFjA,67
|
|
96
|
-
klaude_code/llm/responses/client.py,sha256=lvLnF2yNzOUe13v_1SBheVMnQ5E793X-BRdtKjqJ44c,10763
|
|
97
|
-
klaude_code/llm/responses/input.py,sha256=25J8AYXS7o1SOWvuRiZRee7vd3AKVVrl4vvY6bhx7K0,6006
|
|
98
|
-
klaude_code/protocol/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
-
klaude_code/protocol/commands.py,sha256=O1miI3GyCTLG_u3wS4CtQsmztP-nlGrjyO-k4ADYHH0,522
|
|
100
|
-
klaude_code/protocol/events.py,sha256=wxxwpDEY9mEKNuN-PClW5Yg0BxuCkyONpqzfbbX7kL0,3247
|
|
101
|
-
klaude_code/protocol/llm_parameter.py,sha256=v4vegH0_YL69OjrabpW1rj6ZTVLjm_dnJAr4a-f0L7U,5206
|
|
102
|
-
klaude_code/protocol/model.py,sha256=zmZFCpmI4BLIpuR5VZOfGfH9bXCBoDEteMUIHt5lwOk,5676
|
|
103
|
-
klaude_code/protocol/op.py,sha256=sStyyfLJSO8etxmc4DUf7IR3M-9E9TGP-2Wp60gT1xQ,2537
|
|
104
|
-
klaude_code/protocol/tools.py,sha256=hkjVirnQqGTJS46IWvVKXWR4usPPUgDZDnm34LzAVSc,348
|
|
105
|
-
klaude_code/session/__init__.py,sha256=oXcDA5w-gJCbzmlF8yuWy3ezIW9DgFBNUs-gJHUJ-Rc,121
|
|
106
|
-
klaude_code/session/export.py,sha256=XS-2G5e1c4_isuOLirXtHVXQO1ZQaKo_a8D3Nm-I0ig,20724
|
|
107
|
-
klaude_code/session/selector.py,sha256=HTboyzih7V8zbZoSsArJ-GVC1EnXTGocHJwFmZfbeSg,2567
|
|
108
|
-
klaude_code/session/session.py,sha256=fwFA8GRI9Z17Bd3psAMabXmJNNXkDWSzlLXxL-VGvOA,18975
|
|
109
|
-
klaude_code/session/templates/export_session.html,sha256=xtf6gSuou8DOuIM7hieNMmbm_0ReNaQYfXZS0VVrnXY,30222
|
|
110
|
-
klaude_code/trace/__init__.py,sha256=aKO8yk60QNE_vvuuqu0Tzlai3rXA_b1-qG4jKK7VowY,146
|
|
111
|
-
klaude_code/trace/log.py,sha256=fGSU80TIhI6KfeX7cCtBheK0tBO-87_S3_bh__P8UZo,4779
|
|
112
|
-
klaude_code/ui/__init__.py,sha256=ziPYMGr2Vo1Miju9QHCL8HAkXoiAiV8fyyJiBkOHM_0,385
|
|
113
|
-
klaude_code/ui/base/__init__.py,sha256=nFO9TyEpfFCAWf2OrENxdvSETU7DF-8KtlAHifhfA3c,37
|
|
114
|
-
klaude_code/ui/base/debouncer.py,sha256=TFF1z7B7-FxONEigkYohhShDlqo4cOcqydE9zz7JBHc,1270
|
|
115
|
-
klaude_code/ui/base/debug_event_display.py,sha256=nw4M0KnAYh8IrEg18INRpBNmpVbv_tafRZ8BLmG0pxU,1056
|
|
116
|
-
klaude_code/ui/base/display_abc.py,sha256=Uxxe658RZ0Ozu6Rv6HCQtqtQrJJsAbTMknqPZccHrO0,1000
|
|
117
|
-
klaude_code/ui/base/exec_display.py,sha256=mMhZq_VAf3ZtoEaiV7TWwWC4CohWAYuPyb0c5jULpmY,1201
|
|
118
|
-
klaude_code/ui/base/input_abc.py,sha256=nfimv46BRRxb-FvAyiTfUwU7uwMnpx3C0BhdgPUe3wc,574
|
|
119
|
-
klaude_code/ui/base/progress_bar.py,sha256=MDnhPbqCnN4GDgLOlxxOEVZPDwVC_XL2NM5sl1MFNcQ,2133
|
|
120
|
-
klaude_code/ui/base/stage_manager.py,sha256=ozKYS213_RpsgYxF9mIDcTObrxqkqbE3Ao6CDhnES2E,1559
|
|
121
|
-
klaude_code/ui/base/terminal_color.py,sha256=hAA61H4jhmdHjR4AXWQfefEjQBFP0UG6yYoIbIO5O5Y,7100
|
|
122
|
-
klaude_code/ui/base/terminal_control.py,sha256=tSBiRG8qkWXSIZuFD4GchMO2JhNAn8zhXT64mEtP3JQ,5055
|
|
123
|
-
klaude_code/ui/base/terminal_notifier.py,sha256=6UZza7dBiY2QSp4Eit6OoGO1k6G2z0gQf68ymvEejU8,3180
|
|
124
|
-
klaude_code/ui/base/theme.py,sha256=ZbuWuh6OYuuEQyi8KwYRYMu55SW9OLAmmMcEasEmsS4,9757
|
|
125
|
-
klaude_code/ui/base/utils.py,sha256=TIalxxNBF7SZBj6STdr29fBs7ZsH7k8tg_Z3222pKJs,2094
|
|
126
|
-
klaude_code/ui/renderers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
klaude_code/ui/renderers/common.py,sha256=bH3u0lHqtvWx3XMu3_pkS4Gc8HyAuvCkbVGB1qmCwiM,842
|
|
128
|
-
klaude_code/ui/renderers/developer.py,sha256=gilHdo_3sSgrPN7yUyln0s8bDei6PEx-cZynliSkxKA,3845
|
|
129
|
-
klaude_code/ui/renderers/diffs.py,sha256=QzLZyCf8MHzGG9IS9u9WfTqlqgJp8r7g78sIBY0NSjo,7023
|
|
130
|
-
klaude_code/ui/renderers/errors.py,sha256=-tbkeORpVx1ouANJCaE3MLJfFxGqw1pT61guntytQqc,517
|
|
131
|
-
klaude_code/ui/renderers/metadata.py,sha256=flgyOHkkLYtRosJM_Fd17bFNFvzap_Mt8vp1D9oQfx0,5755
|
|
132
|
-
klaude_code/ui/renderers/status.py,sha256=3nd1acjpOnejb63hxTLVjiYret1Q_c9GZfLFYF6oa6Q,7940
|
|
133
|
-
klaude_code/ui/renderers/sub_agent.py,sha256=RKgxBbKN-Jq6dLI4Xe7xMP2bGnI16I4cHz_3GPaq59E,1588
|
|
134
|
-
klaude_code/ui/renderers/thinking.py,sha256=bT2yj82Yhw6gC06HVwljZ87VrloJPJS6-0x8Ub2oCGg,206
|
|
135
|
-
klaude_code/ui/renderers/tools.py,sha256=ybi2XaipcsDEaHvmNSq1tT65Ex2OvNnIcG21BKrAy6s,14768
|
|
136
|
-
klaude_code/ui/renderers/user_input.py,sha256=PDPjhU6n_Z47bX_lLvmuOu8iC3FvRAmn6cNT4ew9aeI,2205
|
|
137
|
-
klaude_code/ui/repl/__init__.py,sha256=XZYEOpTpZMbyM6uFleLm9-u_kLELDoKuV4g6XVhHqe8,1654
|
|
138
|
-
klaude_code/ui/repl/display.py,sha256=5R02N8le-6wqkB-55iWEXCIC5xwNfxJJgHQJuaX3xgk,1252
|
|
139
|
-
klaude_code/ui/repl/event_handler.py,sha256=bVhCl0x_NYtWDsKl0BRM5KkcWtQrmt30AGgEJDR6z_Q,12392
|
|
140
|
-
klaude_code/ui/repl/input.py,sha256=iBkG4D-QUIqWqePhBFaEKrckaGg5Hez-gne-fCLjUh0,31364
|
|
141
|
-
klaude_code/ui/repl/renderer.py,sha256=h-CE2gzpskRSnXZsQn-PEUG35NGC_YLsu0hbvw7yPN4,13683
|
|
142
|
-
klaude_code/ui/rich_ext/__init__.py,sha256=UW9geLpgtZy6hMhzgZJX8bCdYgRCIk_s9uJeHyIjSmc,40
|
|
143
|
-
klaude_code/ui/rich_ext/live.py,sha256=Uid0QAZG7mHb4KrCF8p9c9n1nHLHzW75xSqcLZ4bLWY,2098
|
|
144
|
-
klaude_code/ui/rich_ext/markdown.py,sha256=hvL0uvMxUBi7II-Jizn9U92mk4flJpEh_xJkxDQhEK8,11425
|
|
145
|
-
klaude_code/ui/rich_ext/quote.py,sha256=tZcxN73SfDBHF_qk0Jkh9gWBqPBn8VLp9RF36YRdKEM,1123
|
|
146
|
-
klaude_code/ui/rich_ext/searchable_text.py,sha256=DTuft8Tvd0fQL03xvKpCH8pTjQ0n4J9eOo4NPEWz89o,2437
|
|
147
|
-
klaude_code/version.py,sha256=QDgEqSFhyTSiABQFQc9VfujMPQcdjgoCaYTQsr94x0Q,4752
|
|
148
|
-
klaude_code-1.2.1.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
|
|
149
|
-
klaude_code-1.2.1.dist-info/entry_points.txt,sha256=7CWKjolvs6dZiYHpelhA_FRJ-sVDh43eu3iWuOhKc_w,53
|
|
150
|
-
klaude_code-1.2.1.dist-info/METADATA,sha256=tF_s2nXobWBs7FQM_crnaHn1sIJNk4Cz5e7zxH4ev_8,5140
|
|
151
|
-
klaude_code-1.2.1.dist-info/RECORD,,
|
|
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
|