Short answer: You can chat with tools in Cohere by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Cohere Chat with Tools action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Model model | options | Optional | Model. Options: Command A, Command R+, Command R |
User Message message | string | Required | User Message (required) |
Tools tools | array | Required | Array of tool defs: { name, description, parameter_definitions } |
Max Tokens max_tokens | number | Optional | 1024 |
{"model": "{{trigger.model}}","message": "{{trigger.message}}","tools": "{{trigger.tools}}","max_tokens": "1024"}
{"id": "msg_abc","message": {"role": "assistant","tool_calls": [{"id": "tool_abc","type": "function","function": {"name": "get_weather","arguments": "{\"city\":\"Paris\"}"}}]}}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.