bhai-cli 0.2.0__tar.gz → 0.2.2__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.
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/PKG-INFO +1 -1
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/pyproject.toml +1 -1
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/cli.py +1 -1
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/orchestrator.py +4 -3
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/LICENSE +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/README.md +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/__init__.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/audio_engine.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/config_manager.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/tools/__init__.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/tools/bash.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/tools/codebase.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/tools/file_ops.py +0 -0
- {bhai_cli-0.2.0 → bhai_cli-0.2.2}/src/bhai_cli/tools/search.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "bhai-cli"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.2"
|
|
4
4
|
description = "BHAI — The Dual-Brain AI Coding Agent with Punjabi Swagger. Indic-native voice + universal LLM tool-calling."
|
|
5
5
|
authors = ["Madhav Kapila <smartatk04@gmail.com>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -104,7 +104,7 @@ def interactive_menu():
|
|
|
104
104
|
choice = Prompt.ask("[bold green]Choose an option[/]", choices=["1", "2", "3", "4", "5"])
|
|
105
105
|
|
|
106
106
|
if choice == "1":
|
|
107
|
-
text(prompt="")
|
|
107
|
+
text(prompt="", vibe_model=None, coder_model=None, interactive=False)
|
|
108
108
|
elif choice == "2":
|
|
109
109
|
listen(vibe_model=None, coder_model=None, file=None)
|
|
110
110
|
elif choice == "3":
|
|
@@ -39,9 +39,10 @@ VIBE_SYSTEM_PROMPT = (
|
|
|
39
39
|
"Your job:\n"
|
|
40
40
|
"1. Parse the user's intent (any Indian language, Hinglish, or English) into a clear "
|
|
41
41
|
"English task description.\n"
|
|
42
|
-
"2.
|
|
43
|
-
|
|
44
|
-
"
|
|
42
|
+
"2. IMPORTANT: You control a CoderAgent that has tools to read/edit files, list directories, and run bash commands! "
|
|
43
|
+
"If the user asks to explain a file, run code, or do ANY system task, DO NOT ask them to upload or paste it. "
|
|
44
|
+
"Instead, output a JSON block to delegate it: {\"task\": \"Read HelloWorld.py and explain it, then run it with a=4 b=10\"}.\n"
|
|
45
|
+
"3. If strictly chatting with no system/code actions needed, respond conversationally with swagger.\n"
|
|
45
46
|
"4. After CoderAgent results, review them and decide:\n"
|
|
46
47
|
' - If the task is COMPLETE, say "BHAI_DONE" somewhere in your response.\n'
|
|
47
48
|
' - If MORE WORK is needed, output another {"task": "next step description"}.\n\n'
|
|
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
|