Spaces:
Running
Running
| import os | |
| import gradio as gr | |
| from huggingface_hub import InferenceClient | |
| from e2b_code_interpreter import Sandbox | |
| from utils import run_interactive_notebook | |
| message_history = None | |
| E2B_API_KEY = os.environ['E2B_API_KEY'] | |
| HF_TOKEN = os.environ['HF_TOKEN'] | |
| def execute_jupyter_agent(sytem_prompt, user_input): | |
| client = InferenceClient(api_key=HF_TOKEN) | |
| max_new_tokens = 512 | |
| model = "meta-llama/Llama-3.1-8B-Instruct" | |
| sbx = Sandbox(api_key=E2B_API_KEY) | |
| messages = [ | |
| {"role": "system", "content": sytem_prompt}, | |
| {"role": "user", "content": user_input} | |
| ] | |
| for notebook_html, messages in run_interactive_notebook(client, model, messages, sbx): | |
| message_history = messages | |
| yield notebook_html | |
| css = """ | |
| #component-0 { | |
| height: 100vh; | |
| overflow-y: auto; | |
| padding: 20px; | |
| } | |
| .gradio-container { | |
| height: 100vh !important; | |
| } | |
| .contain { | |
| height: 100vh !important; | |
| } | |
| """ | |
| # Create the interface | |
| with gr.Blocks(css=css) as demo: | |
| gr.Markdown("# HTML Generator") | |
| with gr.Row(): | |
| system_input = gr.Textbox(label="System prompt", value="Environment: ipython\n\nYou are a helpful coding assistant. Always first explain what you are going to do before writing code.") | |
| user_input = gr.Textbox(label="User prompt", placeholder="What is 2+1? Use Python to solve.", lines=3) | |
| generate_btn = gr.Button("Let's go!") | |
| output = gr.HTML(label="Jupyter Notebook") | |
| generate_btn.click( | |
| fn=execute_jupyter_agent, | |
| inputs=[system_input, user_input], | |
| outputs=output | |
| ) | |
| demo.launch() |