nakas commited on
Commit
57a2c17
·
verified ·
1 Parent(s): 4e654e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +75 -83
app.py CHANGED
@@ -5,7 +5,9 @@ import tempfile
5
  import re
6
  import ast
7
  import gradio as gr
8
- from openai import OpenAI
 
 
9
 
10
  # Extract code blocks from text
11
  def extract_code_blocks(text):
@@ -54,40 +56,50 @@ def validate_gradio_code(code):
54
  except Exception as e:
55
  return False, f"Error validating code: {str(e)}"
56
 
57
- # Global variables for app storage
58
- generated_app = None
59
- current_code = ""
60
-
61
- # Generate app using OpenAI
62
  def generate_gradio_app(api_key, prompt):
63
  if not api_key or len(api_key) < 20:
64
  return None, "Please provide a valid OpenAI API key"
65
 
66
  try:
67
- client = OpenAI(api_key=api_key)
 
 
 
68
 
69
- response = client.chat.completions.create(
70
- model="gpt-4o",
71
- messages=[
72
  {"role": "system", "content": """You are an expert Gradio developer.
73
  Create a standalone Gradio application based on the user's prompt.
74
  Your response should ONLY include Python code without any explanation.
75
  The code must:
76
  1. Import all necessary libraries
77
  2. Define a complete, functional Gradio interface
78
- 3. Launch the interface with share=False
79
- 4. Handle errors gracefully
80
- 5. Be completely self-contained in a single script
81
- 6. End with a simple if __name__ == "__main__": block that launches the app
82
  """
83
  },
84
  {"role": "user", "content": prompt}
85
  ],
86
- temperature=0.2,
87
- max_tokens=4000
 
 
 
 
 
 
88
  )
89
 
90
- generated_code = response.choices[0].message.content
 
 
 
 
 
91
  code_blocks = extract_code_blocks(generated_code)
92
 
93
  if code_blocks:
@@ -98,60 +110,13 @@ def generate_gradio_app(api_key, prompt):
98
  except Exception as e:
99
  return None, str(e)
100
 
101
- # Load and run generated app
102
- def load_and_run_gradio_app(code):
103
- global generated_app, current_code
104
-
105
- # Validate code
106
- is_valid, error_msg = validate_gradio_code(code)
107
- if not is_valid:
108
- return None, error_msg
109
-
110
- # Clean up previous app
111
- if generated_app:
112
- try:
113
- generated_app.close()
114
- except:
115
- pass
116
-
117
- # Save code to temp file
118
- with tempfile.NamedTemporaryFile(suffix='.py', delete=False) as f:
119
- f.write(code.encode('utf-8'))
120
- temp_file = f.name
121
-
122
- try:
123
- # Import module
124
- module_name = os.path.basename(temp_file).replace('.py', '')
125
- spec = importlib.util.spec_from_file_location(module_name, temp_file)
126
- module = importlib.util.module_from_spec(spec)
127
- sys.modules[module_name] = module
128
- spec.loader.exec_module(module)
129
-
130
- # Find Gradio interface
131
- for attr_name in dir(module):
132
- attr = getattr(module, attr_name)
133
- if isinstance(attr, (gr.Blocks, gr.Interface)):
134
- generated_app = attr
135
- current_code = code
136
- return attr, None
137
-
138
- return None, "No Gradio interface found in the generated code"
139
-
140
- except Exception as e:
141
- return None, f"Error executing the generated code: {str(e)}"
142
- finally:
143
- try:
144
- os.unlink(temp_file)
145
- except:
146
- pass
147
-
148
  # Create the main UI
149
  with gr.Blocks(title="AI Gradio App Generator") as demo:
150
  gr.Markdown("# 🤖 AI Gradio App Generator")
151
  gr.Markdown("Describe the app you want, and I'll generate it for you using OpenAI's API.")
152
 
153
  with gr.Row():
154
- with gr.Column(scale=2):
155
  api_key = gr.Textbox(
156
  label="OpenAI API Key",
157
  placeholder="sk-...",
@@ -173,42 +138,69 @@ with gr.Blocks(title="AI Gradio App Generator") as demo:
173
  code_output = gr.Code(language="python", label="Generated Code")
174
 
175
  status_output = gr.Markdown("")
176
-
177
- with gr.Column(scale=3):
178
- app_container = gr.HTML("<div style='text-align: center; padding: 50px;'><h3>Your generated app will appear here</h3></div>")
179
 
180
  def on_submit(api_key_input, prompt_text):
181
  # Generate code
182
  code, error = generate_gradio_app(api_key_input, prompt_text)
183
  if error:
184
- return None, f"⚠️ Error generating code: {error}", "<div style='text-align: center; padding: 50px;'><h3>Error generating app</h3></div>"
 
 
 
 
 
185
 
186
- # Load and run app
187
- app, run_error = load_and_run_gradio_app(code)
188
- if run_error:
189
- return code, f"⚠️ Error running the generated app: {run_error}", "<div style='text-align: center; padding: 50px;'><h3>Error running app</h3></div>"
190
 
191
- # Create iframe to display app
192
- iframe_html = f'''
193
- <div style="border: 1px solid #ddd; border-radius: 8px; padding: 0; overflow: hidden;">
194
- <iframe id="appFrame" src="/generated_app" width="100%" height="800px" frameborder="0"></iframe>
195
- </div>
196
- '''
197
- return code, "✅ App generated successfully!", iframe_html
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  def on_clear():
200
- return "", "", "<div style='text-align: center; padding: 50px;'><h3>Your generated app will appear here</h3></div>"
201
 
202
  submit_btn.click(
203
  on_submit,
204
  inputs=[api_key, prompt],
205
- outputs=[code_output, status_output, app_container]
206
  )
207
 
208
  clear_btn.click(
209
  on_clear,
210
  inputs=[],
211
- outputs=[prompt, status_output, app_container]
212
  )
213
 
214
  if __name__ == "__main__":
 
5
  import re
6
  import ast
7
  import gradio as gr
8
+ import openai
9
+ import requests
10
+ import json
11
 
12
  # Extract code blocks from text
13
  def extract_code_blocks(text):
 
56
  except Exception as e:
57
  return False, f"Error validating code: {str(e)}"
58
 
59
+ # Generate app using direct API call
 
 
 
 
60
  def generate_gradio_app(api_key, prompt):
61
  if not api_key or len(api_key) < 20:
62
  return None, "Please provide a valid OpenAI API key"
63
 
64
  try:
65
+ headers = {
66
+ "Content-Type": "application/json",
67
+ "Authorization": f"Bearer {api_key}"
68
+ }
69
 
70
+ data = {
71
+ "model": "gpt-4o",
72
+ "messages": [
73
  {"role": "system", "content": """You are an expert Gradio developer.
74
  Create a standalone Gradio application based on the user's prompt.
75
  Your response should ONLY include Python code without any explanation.
76
  The code must:
77
  1. Import all necessary libraries
78
  2. Define a complete, functional Gradio interface
79
+ 3. DO NOT include a launch command or if __name__ == "__main__" block
80
+ 4. The interface should be assigned to a variable named 'demo'
81
+ 5. Handle errors gracefully
82
+ 6. Be completely self-contained in a single script
83
  """
84
  },
85
  {"role": "user", "content": prompt}
86
  ],
87
+ "temperature": 0.2,
88
+ "max_tokens": 4000
89
+ }
90
+
91
+ response = requests.post(
92
+ "https://api.openai.com/v1/chat/completions",
93
+ headers=headers,
94
+ json=data
95
  )
96
 
97
+ if response.status_code != 200:
98
+ return None, f"API Error: {response.status_code} - {response.text}"
99
+
100
+ result = response.json()
101
+ generated_code = result["choices"][0]["message"]["content"]
102
+
103
  code_blocks = extract_code_blocks(generated_code)
104
 
105
  if code_blocks:
 
110
  except Exception as e:
111
  return None, str(e)
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  # Create the main UI
114
  with gr.Blocks(title="AI Gradio App Generator") as demo:
115
  gr.Markdown("# 🤖 AI Gradio App Generator")
116
  gr.Markdown("Describe the app you want, and I'll generate it for you using OpenAI's API.")
117
 
118
  with gr.Row():
119
+ with gr.Column():
120
  api_key = gr.Textbox(
121
  label="OpenAI API Key",
122
  placeholder="sk-...",
 
138
  code_output = gr.Code(language="python", label="Generated Code")
139
 
140
  status_output = gr.Markdown("")
141
+
142
+ app_container = gr.HTML(visible=False)
143
+ generated_app_container = gr.Group(visible=False)
144
 
145
  def on_submit(api_key_input, prompt_text):
146
  # Generate code
147
  code, error = generate_gradio_app(api_key_input, prompt_text)
148
  if error:
149
+ return None, f"⚠️ Error generating code: {error}", gr.update(visible=False), gr.update(visible=False)
150
+
151
+ # Validate code
152
+ is_valid, error_msg = validate_gradio_code(code)
153
+ if not is_valid:
154
+ return code, f"⚠️ Error validating code: {error_msg}", gr.update(visible=False), gr.update(visible=False)
155
 
156
+ # Save code to temp file
157
+ with tempfile.NamedTemporaryFile(suffix='.py', delete=False) as f:
158
+ f.write(code.encode('utf-8'))
159
+ temp_file = f.name
160
 
161
+ try:
162
+ # Import module
163
+ module_name = os.path.basename(temp_file).replace('.py', '')
164
+ spec = importlib.util.spec_from_file_location(module_name, temp_file)
165
+ module = importlib.util.module_from_spec(spec)
166
+ sys.modules[module_name] = module
167
+ spec.loader.exec_module(module)
168
+
169
+ # Get the Gradio interface
170
+ if hasattr(module, 'demo'):
171
+ generated_app = module.demo
172
+
173
+ # Clear the container and add the new app
174
+ return (
175
+ code,
176
+ "✅ App generated successfully!",
177
+ gr.update(visible=False),
178
+ gr.update(visible=True, value=generated_app)
179
+ )
180
+ else:
181
+ return code, "⚠️ No 'demo' variable found in the generated code", gr.update(visible=False), gr.update(visible=False)
182
+
183
+ except Exception as e:
184
+ return code, f"⚠️ Error executing the generated code: {str(e)}", gr.update(visible=False), gr.update(visible=False)
185
+ finally:
186
+ try:
187
+ os.unlink(temp_file)
188
+ except:
189
+ pass
190
 
191
  def on_clear():
192
+ return "", "", gr.update(visible=False), gr.update(visible=False)
193
 
194
  submit_btn.click(
195
  on_submit,
196
  inputs=[api_key, prompt],
197
+ outputs=[code_output, status_output, app_container, generated_app_container]
198
  )
199
 
200
  clear_btn.click(
201
  on_clear,
202
  inputs=[],
203
+ outputs=[prompt, status_output, app_container, generated_app_container]
204
  )
205
 
206
  if __name__ == "__main__":