codelion commited on
Commit
f0de125
·
verified ·
1 Parent(s): 14f8888

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -9
app.py CHANGED
@@ -20,18 +20,17 @@ RESULTS_PER_PAGE = 10
20
  TOTAL_RESULTS = 30 # Generate 30 results to allow pagination
21
 
22
  def fetch_search_results(query):
23
- """Fetch search results from the LLM without streaming."""
24
  if not query.strip():
25
  return None, "Please enter a search query."
26
 
27
  prompt = f"""
28
- You are a search engine that provides informative and relevant results. For the given query '{query}',
29
- generate {TOTAL_RESULTS} search results. Each result should include:
30
- - 'title': A concise, descriptive title of the result.
31
- - 'snippet': A short summary (2-3 sentences) of the content.
32
- - 'url': A plausible, clickable URL where the information might be found (e.g., a real or hypothetical website).
33
- Format the response as a JSON array of objects, where each object has 'title', 'snippet', and 'url' fields.
34
- Ensure the results are diverse, relevant to the query, and the URLs are realistic (e.g., https://example.com/page).
35
  """
36
 
37
  try:
@@ -119,7 +118,7 @@ def search_page():
119
  .search-box input[type="text"] {
120
  width: 100%; padding: 12px 20px; font-size: 16px;
121
  border: 1px solid #dfe1e5; border-radius: 24px;
122
- box-shadow: 0 1px 6px rgba(32,33,36,0.28);
123
  }
124
  .search-box input[type="submit"] {
125
  background-color: #f8f9fa; border: 1px solid #f8f9fa;
 
20
  TOTAL_RESULTS = 30 # Generate 30 results to allow pagination
21
 
22
  def fetch_search_results(query):
23
+ """Fetch search results from the LLM without streaming, minimizing hallucinations."""
24
  if not query.strip():
25
  return None, "Please enter a search query."
26
 
27
  prompt = f"""
28
+ You are a highly accurate search engine designed to provide reliable and factual results. For the given query '{query}',
29
+ generate {TOTAL_RESULTS} search results. Each result must include:
30
+ - 'title': A concise, accurate title relevant to the query.
31
+ - 'snippet': A short, factual summary (2-3 sentences) based on real-world knowledge.
32
+ - 'url': A valid, existing URL from well-known websites or domains that likely exist based on your training data (e.g., wikipedia.org, python.org, nytimes.com). Do NOT generate fictional or random URLs; use only URLs you are confident are real and accessible.
33
+ Format the response as a JSON array of objects, where each object has 'title', 'snippet', and 'url' fields. Ensure the results are diverse, directly relevant to the query, and avoid any hallucinated or fabricated content. Double-check your URLs to match real entities or resources.
 
34
  """
35
 
36
  try:
 
118
  .search-box input[type="text"] {
119
  width: 100%; padding: 12px 20px; font-size: 16px;
120
  border: 1px solid #dfe1e5; border-radius: 24px;
121
+ box-shadow: 0 1px 6px rgba(0,0,0,0.28);
122
  }
123
  .search-box input[type="submit"] {
124
  background-color: #f8f9fa; border: 1px solid #f8f9fa;