Spaces:
Running
Running
File size: 5,256 Bytes
76adccc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import gradio as gr\n",
"\n",
"def greet(name):\n",
" return f\"Hello, {name}!\"\n",
"\n",
"iface = gr.Interface(fn=greet, inputs=\"text\", outputs=\"text\", title=\"Greeting Demo\")\n",
"iface.launch()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import gradio as gr\n",
"\n",
"def greet(name):\n",
" return f\"Hello, {name}!\"\n",
"\n",
"def add_example(name, examples):\n",
" new_example = [name]\n",
" examples.append(new_example)\n",
" return examples\n",
"\n",
"with gr.Blocks() as demo:\n",
" name_input = gr.Textbox(label=\"Name\")\n",
" output = gr.Textbox(label=\"Greeting\")\n",
" greet_btn = gr.Button(\"Greet\")\n",
" \n",
" examples = gr.Examples(\n",
" examples=[],\n",
" inputs=[name_input],\n",
" label=\"Dynamic Examples\"\n",
" )\n",
" \n",
" add_example_input = gr.Textbox(label=\"New Example Name\")\n",
" add_example_btn = gr.Button(\"Add Example\")\n",
" \n",
" greet_btn.click(fn=greet, inputs=name_input, outputs=output)\n",
" add_example_btn.click(\n",
" fn=add_example,\n",
" inputs=[add_example_input, examples],\n",
" outputs=examples\n",
" )\n",
"\n",
"demo.launch()"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/yale/work/meta-prompt/.venv/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
" from .autonotebook import tqdm as notebook_tqdm\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"JSON Array: [1, 2, 3, 4, 5]\n",
"YAML Array: [1, 2, 3, 4, 5]\n",
"Running on local URL: http://127.0.0.1:7862\n",
"\n",
"To create a public link, set `share=True` in `launch()`.\n"
]
},
{
"data": {
"text/html": [
"<div><iframe src=\"http://127.0.0.1:7862/\" width=\"100%\" height=\"500\" allow=\"autoplay; camera; microphone; clipboard-read; clipboard-write;\" frameborder=\"0\" allowfullscreen></iframe></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": []
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Error loading JSON: Expecting value: line 1 column 1 (char 0)\n",
"Error loading JSON: Expecting value: line 1 column 1 (char 0)\n"
]
}
],
"source": [
"import gradio as gr\n",
"import json\n",
"import yaml\n",
"\n",
"def load_json_array(json_str):\n",
" try:\n",
" return json.loads(json_str)\n",
" except json.JSONDecodeError as e:\n",
" print(f\"Error loading JSON: {e}\")\n",
" return None\n",
"\n",
"def load_yaml_array(yaml_str):\n",
" try:\n",
" return yaml.safe_load(yaml_str)\n",
" except yaml.YAMLError as e:\n",
" print(f\"Error loading YAML: {e}\")\n",
" return None\n",
"\n",
"# Example usage\n",
"json_str = '[1, 2, 3, 4, 5]'\n",
"yaml_str = '---\\n- 1\\n- 2\\n- 3\\n- 4\\n- 5'\n",
"\n",
"json_array = load_json_array(json_str)\n",
"yaml_array = load_yaml_array(yaml_str)\n",
"\n",
"print(\"JSON Array:\", json_array)\n",
"print(\"YAML Array:\", yaml_array)\n",
"\n",
"# Gradio interface\n",
"with gr.Blocks() as demo:\n",
" json_input = gr.Textbox(label=\"JSON Array\")\n",
" yaml_input = gr.Textbox(label=\"YAML Array\")\n",
" json_output = gr.Textbox(label=\"Loaded JSON Array\")\n",
" yaml_output = gr.Textbox(label=\"Loaded YAML Array\")\n",
" \n",
" load_json_btn = gr.Button(\"Load JSON\")\n",
" load_yaml_btn = gr.Button(\"Load YAML\")\n",
" \n",
" load_json_btn.click(\n",
" fn=load_json_array,\n",
" inputs=json_input,\n",
" outputs=json_output\n",
" )\n",
" load_yaml_btn.click(\n",
" fn=load_yaml_array,\n",
" inputs=yaml_input,\n",
" outputs=yaml_output\n",
" )\n",
"\n",
"demo.launch()\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.10.12"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|