How do I show plotly lables without hovering?

Using the following code, I have been trying to get the data lables for a vilon plot to show without having to hover over it but all I get is errors. What am I doing wrong?

import numpy as np
import plotly.graph_objects as go
data = np.random.randn(30)
fig6 = go.Figure(data=go.Violin(y=data, box_visible=True, line_color='black',
                               meanline_visible=True, fillcolor='lightseagreen', opacity=0.6
                               ))

fig6.update_layout(yaxis_zeroline=False)
fig.update_traces(mode="markers+text")
fig6.show()