measmonysuon commited on
Commit
1f68d0a
1 Parent(s): ad8e28f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -139,10 +139,14 @@ def create_gradio_interface(user_chat_id):
139
  """)
140
 
141
  # Create input components
 
 
 
 
142
  user_chat_id_input = gr.Textbox(
143
- label="Your UID",
144
- placeholder="Enter your user chat ID here...",
145
- value=user_chat_id
146
  )
147
  points_output = gr.Textbox(label="Your Balances", placeholder="User points will be displayed here")
148
 
 
139
  """)
140
 
141
  # Create input components
142
+ url_input = gr.Textbox(
143
+ label="URL",
144
+ placeholder="Enter the URL here...",
145
+ )
146
  user_chat_id_input = gr.Textbox(
147
+ label="User Chat ID",
148
+ placeholder="User Chat ID will be displayed here",
149
+ interactive=False # Make this non-editable
150
  )
151
  points_output = gr.Textbox(label="Your Balances", placeholder="User points will be displayed here")
152