%
creating = defined?(creating) && creating
editing = defined?(editing) && editing
show_basil_tool = BasilService::ENABLED_PAGE_TYPES.include? content.class_name
show_conversation = false && content.class_name == 'Character'
show_tools_menu = show_basil_tool || show_conversation
%>
<% if show_tools_menu %>
-
Tools
<% if show_basil_tool %>
-
<%= link_to basil_content_path(content_type: content.class_name, id: content.id) do %>
palette
Image Generation
<% end %>
<% end %>
<% if show_conversation %>
-
<%= link_to talk_path(character_id: content.id) do %>
message
Talk to <%= content.name %>
<% end %>
<% end %>
<% end %>