Skip to content
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
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 implementation and does not
actually send the data to any LLM endpoints to perform evaluation.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't this a dupe of the previously resolved note?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I fixed the text up

{{% /alert %}}

## Related links

- [Conversation API overview]({{< ref conversation-overview.md >}})
5 changes: 5 additions & 0 deletions daprdocs/data/components/conversation/generic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,8 @@
state: Alpha
version: v1
since: "1.15"
- component: Local echo
link: local-echo
state: Alpha
version: v1
since: "1.15"
Loading