mayank1101 commited on
Commit
9cedcea
·
verified ·
1 Parent(s): 9020155

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +103 -0
app.py ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+ import asyncio
4
+
5
+ from websearch import QueryRequest, PerplexityClient, parse_perplexity_response
6
+
7
+ # load .env file
8
+ from dotenv import load_dotenv
9
+ load_dotenv()
10
+
11
+ # Initialize Perplexity client
12
+ perplexity_client = PerplexityClient(
13
+ api_key=os.environ["PERPLEXITY_AUTH_TOKEN"]
14
+ )
15
+
16
+
17
+
18
+ import gradio as gr
19
+ import httpx
20
+ import json
21
+
22
+ async def query_api(query: str) -> tuple:
23
+ try:
24
+ # Fetch response from Perplexity
25
+ response = await perplexity_client.generate_response(query)
26
+
27
+ # Parse the response
28
+ parsed_response = parse_perplexity_response(response)
29
+
30
+ response_data = json.dumps(parsed_response)
31
+
32
+ # Parse the accumulated response data as JSON
33
+ response_json = json.loads(response_data)
34
+
35
+ # Extract content and citations from the response JSON
36
+ content = response_json.get("content", "")
37
+ citations = response_json.get("citations", [])
38
+
39
+ # Beautify content using Markdown formatting
40
+ beautified_content = f"# Search Results\n\n{content}"
41
+
42
+ # Beautify citations by adding Markdown links
43
+ beautified_citations = "# Citations/Sources\n\n"
44
+ for i, citation in enumerate(citations, start=1):
45
+ beautified_citations += f"{i}. [{citation}]({citation})\n"
46
+
47
+ # Yield the beautified content and citations
48
+ yield beautified_content, beautified_citations
49
+ except httpx.TimeoutException:
50
+ yield "# Request Timeout\n\nRequest timed out. Please try again later.", ""
51
+ except httpx.HTTPStatusError as e:
52
+ yield f"# HTTP Error\n\nHTTP error occurred: {e}", ""
53
+ except Exception as e:
54
+ yield f"# Error\n\nAn error occurred: {e}", ""
55
+
56
+ # Create Gradio interface
57
+ with gr.Blocks(css=".gradio-container { background-color: #f5f5f5; padding: 20px; border-radius: 10px; }", theme=gr.themes.Citrus()) as demo:
58
+ gr.Markdown("# Web Search Application")
59
+
60
+ with gr.Row():
61
+ with gr.Column(
62
+ render=True,
63
+ show_progress=True
64
+ ):
65
+ query = gr.Textbox(
66
+ label="Enter your query",
67
+ placeholder="Type your search query here...",
68
+ lines=2,
69
+ max_lines=4,
70
+ value="",
71
+ elem_id="query-input"
72
+ )
73
+ submit_button = gr.Button("Search")
74
+
75
+ with gr.Column(
76
+ render=True,
77
+ show_progress=True
78
+ ):
79
+ output_content = gr.Markdown(
80
+ label="Response Content",
81
+ value="",
82
+ elem_id="response-content",
83
+ height="600px",
84
+ visible=True,
85
+ show_label=True
86
+
87
+ )
88
+ output_citations = gr.Markdown(
89
+ label="Citations",
90
+ value="",
91
+ elem_id="response-citations",
92
+ height="200px",
93
+ visible=True,
94
+ show_label=True
95
+ )
96
+
97
+ # Set up event listener
98
+ submit_button.click(query_api, inputs=query, outputs=[output_content, output_citations])
99
+
100
+ gr.Markdown("Powered by FastAPI and Gradio")
101
+
102
+ # Launch the Gradio application
103
+ demo.launch()