File size: 9,030 Bytes
6386363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253

import os
import time
from typing import TypedDict
from langgraph.graph import StateGraph, START, END
from langchain_groq import ChatGroq
from langchain_community.tools import DuckDuckGoSearchRun
import gradio as gr

# ─────────────────────────────────────────
# 1. Config β€” set your key here or via HF Secrets
# ─────────────────────────────────────────
os.environ["GROQ_API_KEY"] = os.getenv("GROQ_API_KEY")

llm = ChatGroq(model="llama-3.1-8b-instant")
search = DuckDuckGoSearchRun()

# ─────────────────────────────────────────
# 2. State + Graph (same as research_agent.py)
# ─────────────────────────────────────────
class ResearchState(TypedDict):
    query: str
    search_results: str
    summary: str

def search_node(state: ResearchState):
    return {"search_results": search.run(state["query"])}

def summarize_node(state: ResearchState):
    prompt = f"""You are a research assistant. Answer the user's question clearly 
based on the search results below. Be factual and concise (3-5 sentences).

Question: {state["query"]}

Search Results:
{state["search_results"]}"""
    response = llm.invoke(prompt)
    return {"summary": response.content}

graph = StateGraph(ResearchState)
graph.add_node("search", search_node)
graph.add_node("summarize", summarize_node)
graph.add_edge(START, "search")
graph.add_edge("search", "summarize")
graph.add_edge("summarize", END)
agent = graph.compile()

# ─────────────────────────────────────────
# 3. Gradio handler
# ─────────────────────────────────────────
def run_agent(query):
    if not query.strip():
        return "", "⚠️ Please enter a question."
    
    start = time.time()
    result = agent.invoke({"query": query})
    elapsed = round(time.time() - start, 1)
    
    answer = result["summary"]
    status = f"βœ… Done in {elapsed}s Β· LangGraph β†’ DuckDuckGo β†’ ChatGroq"
    return answer, status

def clear_all():
    return "", "", "Ready."

# ─────────────────────────────────────────
# 4. UI
# ─────────────────────────────────────────
EXAMPLES = [
    "What is LangGraph and how does it work?",
    "Latest AI language models released in 2025?",
    "How does Retrieval-Augmented Generation (RAG) work?",
    "What is the difference between LangChain and LangGraph?",
]

with gr.Blocks(theme=gr.themes.Soft(), title="AI Research Agent") as demo:

    gr.Markdown("""
    ## πŸ” AI Research Agent
    Ask any question. The agent searches the web and returns a clear, summarized answer.
    """)

    with gr.Row():
        # ── Left panel: Input ──
        with gr.Column(scale=2):
            query_input = gr.Textbox(
                label="Your Question",
                placeholder="e.g. What is LangGraph?",
                lines=3,
            )
            with gr.Row():
                submit_btn = gr.Button("πŸš€ Search", variant="primary", scale=3)
                clear_btn = gr.Button("Clear", scale=1)

            gr.Markdown("**Try an example:**")
            for example in EXAMPLES:
                gr.Button(example, size="sm").click(
                    fn=lambda e=example: e,
                    outputs=query_input
                )

        # ── Right panel: Output ──
        with gr.Column(scale=3):
            output_box = gr.Textbox(
                label="πŸ“„ Answer",
                lines=12,
                interactive=False,
            )
            status_md = gr.Markdown("Ready.")

    # ── Wire up events ──
    submit_btn.click(
        fn=run_agent,
        inputs=query_input,
        outputs=[output_box, status_md],
    )
    query_input.submit(          # also fires on Enter key
        fn=run_agent,
        inputs=query_input,
        outputs=[output_box, status_md],
    )
    clear_btn.click(
        fn=clear_all,
        outputs=[query_input, output_box, status_md],
    )

demo.launch()# app.py
import os
import time
from typing import TypedDict
from langgraph.graph import StateGraph, START, END
from langchain_groq import ChatGroq
from langchain_community.tools import DuckDuckGoSearchRun
import gradio as gr

# ─────────────────────────────────────────
# 1. Config β€” set your key here or via HF Secrets
# ─────────────────────────────────────────
os.environ["GROQ_API_KEY"] = "your_groq_api_key_here"

llm = ChatGroq(model="llama3-8b-8192", temperature=0.3)
search = DuckDuckGoSearchRun()

# ─────────────────────────────────────────
# 2. State + Graph (same as research_agent.py)
# ─────────────────────────────────────────
class ResearchState(TypedDict):
    query: str
    search_results: str
    summary: str

def search_node(state: ResearchState):
    return {"search_results": search.run(state["query"])}

def summarize_node(state: ResearchState):
    prompt = f"""You are a research assistant. Answer the user's question clearly 
based on the search results below. Be factual and concise (3-5 sentences).

Question: {state["query"]}

Search Results:
{state["search_results"]}"""
    response = llm.invoke(prompt)
    return {"summary": response.content}

graph = StateGraph(ResearchState)
graph.add_node("search", search_node)
graph.add_node("summarize", summarize_node)
graph.add_edge(START, "search")
graph.add_edge("search", "summarize")
graph.add_edge("summarize", END)
agent = graph.compile()

# ─────────────────────────────────────────
# 3. Gradio handler
# ─────────────────────────────────────────
def run_agent(query):
    if not query.strip():
        return "", "⚠️ Please enter a question."
    
    start = time.time()
    result = agent.invoke({"query": query})
    elapsed = round(time.time() - start, 1)
    
    answer = result["summary"]
    status = f"βœ… Done in {elapsed}s Β· LangGraph β†’ DuckDuckGo β†’ ChatGroq"
    return answer, status

def clear_all():
    return "", "", "Ready."

# ─────────────────────────────────────────
# 4. UI
# ─────────────────────────────────────────
EXAMPLES = [
    "What is LangGraph and how does it work?",
    "Latest AI language models released in 2025?",
    "How does Retrieval-Augmented Generation (RAG) work?",
    "What is the difference between LangChain and LangGraph?",
]

with gr.Blocks(theme=gr.themes.Soft(), title="AI Research Agent") as demo:

    gr.Markdown("""
    ## πŸ” AI Research Agent
    Ask any question. The agent searches the web and returns a clear, summarized answer.
    """)

    with gr.Row():
        # ── Left panel: Input ──
        with gr.Column(scale=2):
            query_input = gr.Textbox(
                label="Your Question",
                placeholder="e.g. What is LangGraph?",
                lines=3,
            )
            with gr.Row():
                submit_btn = gr.Button("πŸš€ Search", variant="primary", scale=3)
                clear_btn = gr.Button("Clear", scale=1)

            gr.Markdown("**Try an example:**")
            for example in EXAMPLES:
                gr.Button(example, size="sm").click(
                    fn=lambda e=example: e,
                    outputs=query_input
                )

        # ── Right panel: Output ──
        with gr.Column(scale=3):
            output_box = gr.Textbox(
                label="πŸ“„ Answer",
                lines=12,
                interactive=False,
            )
            status_md = gr.Markdown("Ready.")

    # ── Wire up events ──
    submit_btn.click(
        fn=run_agent,
        inputs=query_input,
        outputs=[output_box, status_md],
    )
    query_input.submit(          # also fires on Enter key
        fn=run_agent,
        inputs=query_input,
        outputs=[output_box, status_md],
    )
    clear_btn.click(
        fn=clear_all,
        outputs=[query_input, output_box, status_md],
    )

demo.launch()