{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Sandbox\n", "\n", "This is a helper python notebook you can use to debug and try things during the workshop." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from participant_agent.graph import graph\n", "\n", "from IPython.display import Image, display\n", "\n", "display(Image(graph.get_graph(xray=True).draw_mermaid_png()))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "res = graph.invoke({\"messages\": [\n", " \"\"\"\n", " Hello\n", " \"\"\"\n", "]})" ] } ], "metadata": { "kernelspec": { "display_name": "venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.9" } }, "nbformat": 4, "nbformat_minor": 2 }