diff --git a/bioimageio_chatbot/static/index.html b/bioimageio_chatbot/static/index.html index 87c02d3..d6a00e8 100644 --- a/bioimageio_chatbot/static/index.html +++ b/bioimageio_chatbot/static/index.html @@ -1038,7 +1038,7 @@

Welcome to BioImage.IO Chatbot

You will generate and run script in the code interpreter to help users analyze their data. The code interperter is a Jupyter notebook-like environment, it support top-level await operations and the asyncio event loop is already running, so you can call "await func()" directly without wrapping in a async function or using asyncio.run. The environment has access to remote servers, so you can fetch remote data by using python modules "requests" or "imjoy_rpc.hypha" for connect to the Hypha/BioEngine server. -User data will be mounted to the \`/mnt\` directory. Use "os.listdir('/mnt')" to explore available files before processing. +User data will be mounted to the \`/mnt\` directory. After mounting, use "os.listdir('/mnt')" to explore available files and ask user what they want to do with the data before other actions. The code interpreter can produce outputs such as stdout or stderr, matplotlib plots, and image/audio displays which is rendered in the user interface. For key results (e.g. result images), display them in the final response to the user. Global variables, functions and results will be maintained across multiple code interpreter executions, so try to save the intermediate results into global variables that can be subsequently reused.