-
Notifications
You must be signed in to change notification settings - Fork 116
feat: add --prompt flag for headless single-shot execution #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
velocitybolt
wants to merge
2
commits into
mindsdb:main
Choose a base branch
from
velocitybolt:feat/headless-prompt
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+358
−1
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1980,6 +1980,126 @@ def run_chat( | |
| asyncio.run(_chat_loop(console, settings, resume=resume, first_run=first_run, desktop_first_run=desktop_first_run)) | ||
|
|
||
|
|
||
| def run_headless( | ||
| console: Console, settings: AntonSettings, *, prompt: str, output_format: str = "text" | ||
| ) -> None: | ||
| """Run a single prompt in headless mode and exit.""" | ||
| asyncio.run(_headless(console, settings, prompt=prompt, output_format=output_format)) | ||
|
|
||
|
|
||
| async def _headless( | ||
| console: Console, settings: AntonSettings, *, prompt: str, output_format: str = "text" | ||
| ) -> None: | ||
| """Execute a single prompt without interactive elements.""" | ||
| from anton.context.self_awareness import SelfAwarenessContext | ||
| from anton.llm.client import LLMClient | ||
| from anton.memory.cortex import Cortex | ||
| from anton.workspace import Workspace | ||
|
|
||
| llm_client = LLMClient.from_settings(settings) | ||
|
|
||
| self_awareness = SelfAwarenessContext(Path(settings.context_dir)) | ||
| workspace = Workspace(settings.workspace_path) | ||
| workspace.apply_env_to_process() | ||
|
|
||
| # Inject datasource env vars | ||
| dv = DataVault() | ||
| dreg = DatasourceRegistry() | ||
| for conn in dv.list_connections(): | ||
| dv.inject_env(conn["engine"], conn["name"]) | ||
| edef = dreg.get(conn["engine"]) | ||
| if edef is not None: | ||
| register_secret_vars(edef, engine=conn["engine"], name=conn["name"]) | ||
| del dv, dreg | ||
|
|
||
| global_memory_dir = Path.home() / ".anton" / "memory" | ||
| project_memory_dir = settings.workspace_path / ".anton" / "memory" | ||
|
|
||
| cortex = Cortex( | ||
| global_dir=global_memory_dir, | ||
| project_dir=project_memory_dir, | ||
| mode=settings.memory_mode, | ||
| llm_client=llm_client, | ||
| ) | ||
|
|
||
| from anton.memory.episodes import EpisodicMemory | ||
|
|
||
| episodes_dir = settings.workspace_path / ".anton" / "episodes" | ||
| episodic = EpisodicMemory(episodes_dir, enabled=settings.episodic_memory) | ||
| if episodic.enabled: | ||
| episodic.start_session() | ||
|
|
||
| from anton.memory.history_store import HistoryStore | ||
|
|
||
| history_store = HistoryStore(episodes_dir) | ||
| current_session_id = episodic._session_id if episodic.enabled else None | ||
|
|
||
| runtime_context = build_runtime_context(settings) | ||
| coding_api_key = ( | ||
| settings.anthropic_api_key | ||
| if settings.coding_provider == "anthropic" | ||
| else settings.openai_api_key | ||
| ) or "" | ||
|
|
||
| session = ChatSession( | ||
| llm_client, | ||
| self_awareness=self_awareness, | ||
| cortex=cortex, | ||
| episodic=episodic, | ||
| runtime_context=runtime_context, | ||
| workspace=workspace, | ||
| console=None, # No interactive console in headless mode | ||
| coding_provider=settings.coding_provider, | ||
| coding_api_key=coding_api_key, | ||
| coding_base_url=settings.openai_base_url or "", | ||
| history_store=history_store, | ||
| session_id=current_session_id, | ||
| proactive_dashboards=False, # No interactive dashboards in headless | ||
| ) | ||
|
|
||
| # Execute single turn | ||
| response_text = "" | ||
| tool_calls: list[dict] = [] | ||
| usage_data: dict = {} | ||
|
|
||
| async for event in session.turn_stream(prompt): | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's add try/except and make sure we print the error to stderr |
||
| if isinstance(event, StreamTextDelta): | ||
| response_text += event.text | ||
| elif isinstance(event, StreamToolUseStart): | ||
| tool_calls.append({"name": event.name, "id": event.id, "input": {}}) | ||
| elif isinstance(event, StreamToolUseDelta): | ||
| # Accumulate tool input JSON | ||
| if tool_calls: | ||
| last = tool_calls[-1] | ||
| last.setdefault("_raw_input", "") | ||
| last["_raw_input"] += event.json_delta | ||
| elif isinstance(event, StreamToolUseEnd): | ||
| # Parse accumulated JSON input | ||
| if tool_calls: | ||
| last = tool_calls[-1] | ||
| raw = last.pop("_raw_input", "{}") | ||
| try: | ||
| last["input"] = _json.loads(raw) | ||
| except _json.JSONDecodeError: | ||
| last["input"] = raw | ||
| elif isinstance(event, StreamComplete): | ||
| usage_data = { | ||
| "input_tokens": event.response.usage.input_tokens, | ||
| "output_tokens": event.response.usage.output_tokens, | ||
| } | ||
|
|
||
| # Output | ||
| if output_format == "json": | ||
| result = { | ||
| "response": response_text, | ||
| "tool_calls": [{"name": tc["name"], "input": tc.get("input", {})} for tc in tool_calls], | ||
| "usage": usage_data, | ||
| } | ||
| print(_json.dumps(result)) | ||
| else: | ||
| print(response_text) | ||
|
|
||
|
|
||
| async def _chat_loop( | ||
| console: Console, settings: AntonSettings, *, resume: bool = False, first_run: bool = False, desktop_first_run: bool = False | ||
| ) -> None: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,166 @@ | ||
| """Tests for headless mode (--prompt flag).""" | ||
| from __future__ import annotations | ||
|
|
||
| import json | ||
| from io import StringIO | ||
| from unittest.mock import AsyncMock, MagicMock, patch | ||
|
|
||
| import pytest | ||
|
|
||
| from anton.chat import _headless | ||
| from anton.llm.provider import ( | ||
| LLMResponse, | ||
| StreamComplete, | ||
| StreamTextDelta, | ||
| StreamToolUseEnd, | ||
| StreamToolUseStart, | ||
| ToolCall, | ||
| Usage, | ||
| ) | ||
|
|
||
|
|
||
| def _text_response(text: str) -> LLMResponse: | ||
| return LLMResponse( | ||
| content=text, | ||
| tool_calls=[], | ||
| usage=Usage(input_tokens=10, output_tokens=20), | ||
| stop_reason="end_turn", | ||
| ) | ||
|
|
||
|
|
||
| def _mock_settings(): | ||
| settings = MagicMock() | ||
| settings.workspace_path = MagicMock() | ||
| settings.workspace_path.__truediv__ = lambda self, other: MagicMock() | ||
| settings.context_dir = "/tmp/test-anton-context" | ||
| settings.memory_mode = "off" | ||
| settings.episodic_memory = False | ||
| settings.coding_provider = "anthropic" | ||
| settings.anthropic_api_key = "test-key" | ||
| settings.openai_api_key = None | ||
| settings.openai_base_url = None | ||
| settings.proactive_dashboards = False | ||
| return settings | ||
|
|
||
|
|
||
| def _patches(mock_session): | ||
| """Common patches for headless tests. Returns context manager stack.""" | ||
| mock_dv = MagicMock() | ||
| mock_dv.return_value.list_connections.return_value = [] | ||
| mock_ep = MagicMock() | ||
| mock_ep.return_value.enabled = False | ||
| mock_ep.return_value._session_id = None | ||
|
|
||
| return ( | ||
| patch("anton.llm.client.LLMClient.from_settings", return_value=MagicMock()), | ||
| patch("anton.context.self_awareness.SelfAwarenessContext"), | ||
| patch("anton.workspace.Workspace"), | ||
| patch("anton.data_vault.DataVault", mock_dv), | ||
| patch("anton.datasource_registry.DatasourceRegistry"), | ||
| patch("anton.memory.cortex.Cortex"), | ||
| patch("anton.memory.episodes.EpisodicMemory", mock_ep), | ||
| patch("anton.memory.history_store.HistoryStore"), | ||
| patch("anton.chat_session.build_runtime_context", return_value=""), | ||
| patch("anton.chat.ChatSession", return_value=mock_session), | ||
| ) | ||
|
|
||
|
|
||
| class TestHeadlessTextOutput: | ||
| @pytest.mark.asyncio | ||
| async def test_basic_text_response(self, capsys): | ||
| mock_session = AsyncMock() | ||
|
|
||
| async def fake_stream(prompt): | ||
| yield StreamTextDelta("The answer is 42.") | ||
| yield StreamComplete(_text_response("The answer is 42.")) | ||
|
|
||
| mock_session.turn_stream = fake_stream | ||
|
|
||
| patches = _patches(mock_session) | ||
| with patches[0], patches[1], patches[2], patches[3], patches[4], \ | ||
| patches[5], patches[6], patches[7], patches[8], patches[9]: | ||
| from rich.console import Console | ||
| console = Console(file=StringIO()) | ||
| await _headless(console, _mock_settings(), prompt="question", output_format="text") | ||
|
|
||
| captured = capsys.readouterr() | ||
| assert "The answer is 42." in captured.out | ||
|
|
||
|
|
||
| class TestHeadlessJsonOutput: | ||
| @pytest.mark.asyncio | ||
| async def test_json_response(self, capsys): | ||
| mock_session = AsyncMock() | ||
|
|
||
| async def fake_stream(prompt): | ||
| yield StreamTextDelta("Hello world") | ||
| yield StreamComplete(_text_response("Hello world")) | ||
|
|
||
| mock_session.turn_stream = fake_stream | ||
|
|
||
| patches = _patches(mock_session) | ||
| with patches[0], patches[1], patches[2], patches[3], patches[4], \ | ||
| patches[5], patches[6], patches[7], patches[8], patches[9]: | ||
| from rich.console import Console | ||
| console = Console(file=StringIO()) | ||
| await _headless(console, _mock_settings(), prompt="say hello", output_format="json") | ||
|
|
||
| captured = capsys.readouterr() | ||
| result = json.loads(captured.out) | ||
| assert result["response"] == "Hello world" | ||
| assert isinstance(result["tool_calls"], list) | ||
| assert result["usage"]["input_tokens"] == 10 | ||
| assert result["usage"]["output_tokens"] == 20 | ||
|
|
||
|
|
||
| class TestHeadlessToolCalls: | ||
| @pytest.mark.asyncio | ||
| async def test_tool_calls_in_json_output(self, capsys): | ||
| mock_session = AsyncMock() | ||
|
|
||
| async def fake_stream(prompt): | ||
| yield StreamToolUseStart(id="tc_1", name="scratchpad") | ||
| yield StreamToolUseEnd(id="tc_1") | ||
| yield StreamTextDelta("Result: 55") | ||
| yield StreamComplete(LLMResponse( | ||
| content="Result: 55", | ||
| tool_calls=[ToolCall(id="tc_1", name="scratchpad", input={"action": "exec"})], | ||
| usage=Usage(input_tokens=50, output_tokens=100), | ||
| stop_reason="end_turn", | ||
| )) | ||
|
|
||
| mock_session.turn_stream = fake_stream | ||
|
|
||
| patches = _patches(mock_session) | ||
| with patches[0], patches[1], patches[2], patches[3], patches[4], \ | ||
| patches[5], patches[6], patches[7], patches[8], patches[9]: | ||
| from rich.console import Console | ||
| console = Console(file=StringIO()) | ||
| await _headless(console, _mock_settings(), prompt="fibonacci", output_format="json") | ||
|
|
||
| captured = capsys.readouterr() | ||
| result = json.loads(captured.out) | ||
| assert len(result["tool_calls"]) == 1 | ||
| assert result["tool_calls"][0]["name"] == "scratchpad" | ||
| assert "55" in result["response"] | ||
|
|
||
|
|
||
| class TestHeadlessNoInteractive: | ||
| @pytest.mark.asyncio | ||
| async def test_completes_without_interactive_input(self): | ||
| """Headless mode completes without prompt_toolkit or interactive console.""" | ||
| mock_session = AsyncMock() | ||
|
|
||
| async def fake_stream(prompt): | ||
| yield StreamTextDelta("ok") | ||
| yield StreamComplete(_text_response("ok")) | ||
|
|
||
| mock_session.turn_stream = fake_stream | ||
|
|
||
| patches = _patches(mock_session) | ||
| with patches[0], patches[1], patches[2], patches[3], patches[4], \ | ||
| patches[5], patches[6], patches[7], patches[8], patches[9]: | ||
| from rich.console import Console | ||
| console = Console(file=StringIO()) | ||
| # Should complete without hanging on interactive input | ||
| await _headless(console, _mock_settings(), prompt="test", output_format="text") |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Currently we are trying to decouple the chat.py scirpt so it would be better if you can migrate this under a new file in commands/dir