How to include tabs in bokeh template?

I understand that we can include figures(charts) as below in templates.

{{ embed(roots.product) }}

I would like to know how I can embed tabs similarly? I tried inserting tabs as follows but it’s not working. Appreciate any help here.

p1 = figure(plot_width=300, plot_height=300)
p1.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], size=20, color="navy", alpha=0.5)
tab1 = Panel(child=p1, title="circle")

p2 = figure(plot_width=300, plot_height=300)
p2.line([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], line_width=3, color="navy", alpha=0.5)
tab2 = Panel(child=p2, title="line")

tabs = Tabs(tabs=[ tab1, tab2 ], name="mytabs")


{{ embed(roots.mytabs) }}