Skip to content
New Workbook
Sign up
Try out AI

How to use the Workspace AI Assistant

Chat with your data

  • Click the "Chat" toggle at the bottom of the screen.
  • Click one of the suggested prompts to start a conversation

Use AI to write code

  • Click the cell below.
  • In the cell menu, click "AI".
  • In the text box that appears, type in "Create a map pointing to the Eiffel tower" and hit Enter.
  • In the cell menu, click "Accept & Run" to accept and run the suggested code.
import folium

# Coordinates of the Eiffel Tower
latitude = 48.8584
longitude = 2.2945

# Create a map centered around the Eiffel Tower
eiffel_map = folium.Map(location=[latitude, longitude], zoom_start=16)

# Add a marker for the Eiffel Tower
folium.Marker([latitude, longitude], popup='Eiffel Tower').add_to(eiffel_map)

# Display the map
eiffel_map

Use AI to fix an error

  • Try to run the cell below. It errors!
  • Click "Fix and explain" to have the AI assistant fix the code and explain the mistake.
str(3) + '6'

What to do next

It's up to you now! How will you use your new AI Assistant?

Looking for more prompts to try? The following tutorial has more: 10 Ways to Speed Up Your Analysis With the Workspace AI Assistant

Looking for more datasets to explore? We have a bunch of datasets your new AI Assistant will love to explore!