diff --git a/daprdocs/content/en/reference/components-reference/supported-conversation/local-echo.md b/daprdocs/content/en/reference/components-reference/supported-conversation/local-echo.md new file mode 100644 index 00000000000..e2a2770a3e8 --- /dev/null +++ b/daprdocs/content/en/reference/components-reference/supported-conversation/local-echo.md @@ -0,0 +1,28 @@ +--- +type: docs +title: "Local Testing" +linkTitle: "Echo" +description: Detailed information on the echo conversation component used for local testing +--- + +## Component format + +A Dapr `conversation.yaml` component file has the following structure: + +```yaml +apiVersion: dapr.io/v1alpha1 +kind: Component +metadata: + name: echo +spec: + type: conversation.echo + version: v1 +``` + +{{% alert title="Information" color="warning" %}} +This component is only meant for local validation and testing of a Conversation component implementation. It does not actually send the data to any LLM but rather echos the input back directly. +{{% /alert %}} + +## Related links + +- [Conversation API overview]({{< ref conversation-overview.md >}}) diff --git a/daprdocs/data/components/conversation/generic.yaml b/daprdocs/data/components/conversation/generic.yaml index b8961c86829..48eab18af22 100644 --- a/daprdocs/data/components/conversation/generic.yaml +++ b/daprdocs/data/components/conversation/generic.yaml @@ -23,3 +23,8 @@ state: Alpha version: v1 since: "1.15" +- component: Local echo + link: local-echo + state: Stable + version: v1 + since: "1.15"