DSatishchandra commited on
Commit
68dac82
1 Parent(s): 397d198

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,10 +1,10 @@
1
  import gradio as gr
2
- import name
3
  import asyncio
4
 
5
  # Gradio interface function
6
  def food_order_interface():
7
- return name.food_order_assistant()
8
 
9
  # Create Gradio application
10
  async def create_demo():
 
1
  import gradio as gr
2
+ import order_assistant # Corrected import
3
  import asyncio
4
 
5
  # Gradio interface function
6
  def food_order_interface():
7
+ return order_assistant.food_order_assistant() # Updated reference
8
 
9
  # Create Gradio application
10
  async def create_demo():