ai/ai-chat/ai-chat-message-action.component.ts
An action button that can be added to chat messages. Typically used for actions like copying, regenerating, or providing feedback on messages.
| selector | c8y-ai-chat-message-action |
| standalone | true |
| imports |
TooltipModule
C8yTranslatePipe
|
| templateUrl | ./ai-chat-message-action.component.html |
TooltipModule
C8yTranslatePipe
IconDirective
@if (!custom) {
<button
class="btn btn-dot text-muted"
[attr.aria-label]="tooltip | translate"
[tooltip]="tooltip | translate"
[adaptivePosition]="true"
[delay]="500"
(click)="actionClicked.emit()"
[disabled]="disabled"
>
<i
class="text-12"
[c8yIcon]="icon"
></i>
</button>
} @else {
<ng-content></ng-content>
}