Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions multimodal/tarko/agent-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tarko

# Run with built-in agents
tarko run agent-tars # Agent TARS
tarko run omni-tars # Omni TARS
tarko run omni-tars # Omni-TARS
tarko run mcp-agent # MCP Agent

# Run with custom agent
Expand All @@ -39,7 +39,7 @@ echo "Summarize this code" | tarko --headless
Tarko CLI includes several built-in agents:

- **`agent-tars`** - Agent TARS: Advanced task automation and reasoning system
- **`omni-tars`** - Omni TARS: Multi-modal agent with comprehensive capabilities
- **`omni-tars`** - Omni-TARS: Multi-modal agent with comprehensive capabilities
- **`mcp-agent`** - MCP Agent: Model Context Protocol agent for tool integration

```bash
Expand Down
2 changes: 1 addition & 1 deletion multimodal/tarko/agent-cli/src/core/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const BUILTIN_AGENTS: Record<string, { modulePath: string; label: string }> = {
},
'omni-tars': {
modulePath: '@omni-tars/agent',
label: 'Omni TARS',
label: 'Omni-TARS Agent',
},
'mcp-agent': {
modulePath: '@tarko/mcp-agent',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class SearchService {
return content;
}

// Handle MCP wrapper format (temporary fix for Omni TARS)
// Handle MCP wrapper format (temporary fix for Omni-TARS)
const unwrappedContent = this.unwrapMCPContent(content);

// Route to specific normalizer
Expand Down Expand Up @@ -188,7 +188,7 @@ export class SearchService {
});
}
} catch (error) {
console.warn('Failed to parse Omni TARS search result:', error);
console.warn('Failed to parse Omni-TARS search result:', error);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const strReplaceEditorRendererCondition: FunctionToolToRendererCondition
): string | null => {
if (toolName === 'str_replace_editor') {
/**
*
* Object case (always FAIL for now):
*
* {
Expand Down Expand Up @@ -62,7 +63,7 @@ export const strReplaceEditorRendererCondition: FunctionToolToRendererCondition
};

/**
* For Omni TARS "execute_bash" tool.
* For Omni-TARS "execute_bash" tool.
*/
// if (panelContent.title === 'str_replace_editor' && panelContent.arguments) {
// const { command = '', file_text = '', path = '' } = panelContent.arguments;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function extractCommandData(panelContent: StandardPanelContent) {
*/

/**
* For Omni TARS "execute_bash" tool.
* For Omni-TARS "execute_bash" tool.
* {
* "panelContent": {
* "type": "command_result",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ function extractScriptData(panelContent: StandardPanelContent): {
/**
* Handle JupyterCI tool specifically
*
* For Omni TARS "JupyterCI" tool.
* For Omni-TARS "JupyterCI" tool.
*
* {
* "panelContent": {
Expand Down
Loading