lightmate commited on
Commit
3b47028
·
verified ·
1 Parent(s): b90e46a

Validation update: empty input

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -32,6 +32,10 @@ SEARCH_MODEL = os.getenv("SEARCH_MODEL")
32
 
33
  # Function to process and verify news
34
  def evaluate_news(news_input):
 
 
 
 
35
  yield "**Processing... Please wait.** ⏳"
36
 
37
  # Handle URL input
 
32
 
33
  # Function to process and verify news
34
  def evaluate_news(news_input):
35
+ if not news_input.strip():
36
+ yield "**⚠️ Warning:** Input cannot be empty. Please enter news text or a URL."
37
+ return
38
+
39
  yield "**Processing... Please wait.** ⏳"
40
 
41
  # Handle URL input