# diagrid call conversation converse

Send a prompt to a Conversation LLM component

### Description

Send a prompt to an LLM configured as a Conversation component and print the response.

```
diagrid call conversation converse [flags]
```

### Examples

```

  # Converse with full JSON payload
  diagrid call conversation converse --component openai --id caller --data '{
    "inputs": [
      {
        "messages": [
          {
            "ofUser": {
              "content": [{ "text": "What is Dapr?" }]
            }
          }
        ]
      }
    ]
  }'

  # Converse using short form
  diagrid call conversation converse --component convo --id caller --text "What is Dapr?"

```

### Options

```
  -a, --id string          Caller id
  -c, --component string   Component name for target conversation component
  -p, --project string     Name of existing project
  -d, --data string        Data string (full JSON payload)
  -t, --text string        Text message (short form - will be wrapped in proper JSON structure)
  -o, --output string      Output format, supported [table, yaml, json] (default "table")
  -v, --verbose            Include verbose output such as curl command and response body
  -h, --help               help for converse
```

### Options inherited from parent commands

```
      --api-key string   Diagrid Cloud API key
```

### SEE ALSO

- [diagrid call conversation](./conversation.md)	 - Interact with LLMs via the Dapr Conversation API
