Update app.py
Browse files
app.py
CHANGED
@@ -1,196 +1,214 @@
|
|
|
|
1 |
import os
|
2 |
-
|
3 |
-
import
|
4 |
-
import
|
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 |
else:
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
|
49 |
-
print(agent_code)
|
50 |
-
|
51 |
-
# 2. Fetch Questions
|
52 |
-
print(f"Fetching questions from: {questions_url}")
|
53 |
-
try:
|
54 |
-
response = requests.get(questions_url, timeout=15)
|
55 |
-
response.raise_for_status()
|
56 |
-
questions_data = response.json()
|
57 |
-
if not questions_data:
|
58 |
-
print("Fetched questions list is empty.")
|
59 |
-
return "Fetched questions list is empty or invalid format.", None
|
60 |
-
print(f"Fetched {len(questions_data)} questions.")
|
61 |
-
except requests.exceptions.RequestException as e:
|
62 |
-
print(f"Error fetching questions: {e}")
|
63 |
-
return f"Error fetching questions: {e}", None
|
64 |
-
except requests.exceptions.JSONDecodeError as e:
|
65 |
-
print(f"Error decoding JSON response from questions endpoint: {e}")
|
66 |
-
print(f"Response text: {response.text[:500]}")
|
67 |
-
return f"Error decoding server response for questions: {e}", None
|
68 |
-
except Exception as e:
|
69 |
-
print(f"An unexpected error occurred fetching questions: {e}")
|
70 |
-
return f"An unexpected error occurred fetching questions: {e}", None
|
71 |
-
|
72 |
-
# 3. Run your Agent
|
73 |
-
results_log = []
|
74 |
-
answers_payload = []
|
75 |
-
print(f"Running agent on {len(questions_data)} questions...")
|
76 |
-
for item in questions_data:
|
77 |
-
task_id = item.get("task_id")
|
78 |
-
question_text = item.get("question")
|
79 |
-
if not task_id or question_text is None:
|
80 |
-
print(f"Skipping item with missing task_id or question: {item}")
|
81 |
-
continue
|
82 |
-
try:
|
83 |
-
submitted_answer = agent(question_text)
|
84 |
-
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
85 |
-
results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": submitted_answer})
|
86 |
-
except Exception as e:
|
87 |
-
print(f"Error running agent on task {task_id}: {e}")
|
88 |
-
results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": f"AGENT ERROR: {e}"})
|
89 |
-
|
90 |
-
if not answers_payload:
|
91 |
-
print("Agent did not produce any answers to submit.")
|
92 |
-
return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
|
93 |
-
|
94 |
-
# 4. Prepare Submission
|
95 |
-
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
96 |
-
status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
|
97 |
-
print(status_update)
|
98 |
-
|
99 |
-
# 5. Submit
|
100 |
-
print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
|
101 |
-
try:
|
102 |
-
response = requests.post(submit_url, json=submission_data, timeout=60)
|
103 |
-
response.raise_for_status()
|
104 |
-
result_data = response.json()
|
105 |
-
final_status = (
|
106 |
-
f"Submission Successful!\n"
|
107 |
-
f"User: {result_data.get('username')}\n"
|
108 |
-
f"Overall Score: {result_data.get('score', 'N/A')}% "
|
109 |
-
f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
|
110 |
-
f"Message: {result_data.get('message', 'No message received.')}"
|
111 |
)
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
print(status_message)
|
124 |
-
results_df = pd.DataFrame(results_log)
|
125 |
-
return status_message, results_df
|
126 |
-
except requests.exceptions.Timeout:
|
127 |
-
status_message = "Submission Failed: The request timed out."
|
128 |
-
print(status_message)
|
129 |
-
results_df = pd.DataFrame(results_log)
|
130 |
-
return status_message, results_df
|
131 |
-
except requests.exceptions.RequestException as e:
|
132 |
-
status_message = f"Submission Failed: Network error - {e}"
|
133 |
-
print(status_message)
|
134 |
-
results_df = pd.DataFrame(results_log)
|
135 |
-
return status_message, results_df
|
136 |
-
except Exception as e:
|
137 |
-
status_message = f"An unexpected error occurred during submission: {e}"
|
138 |
-
print(status_message)
|
139 |
-
results_df = pd.DataFrame(results_log)
|
140 |
-
return status_message, results_df
|
141 |
-
|
142 |
-
|
143 |
-
# --- Build Gradio Interface using Blocks ---
|
144 |
-
with gr.Blocks() as demo:
|
145 |
-
gr.Markdown("# Basic Agent Evaluation Runner")
|
146 |
-
gr.Markdown(
|
147 |
-
"""
|
148 |
-
**Instructions:**
|
149 |
-
|
150 |
-
1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
|
151 |
-
2. Log in to your Hugging Face account using the button below. This uses your HF username for submission.
|
152 |
-
3. Click 'Run Evaluation & Submit All Answers' to fetch questions, run your agent, submit answers, and see the score.
|
153 |
-
|
154 |
-
---
|
155 |
-
**Disclaimers:**
|
156 |
-
Once clicking on the "submit button, it can take quite some time ( this is the time for the agent to go through all the questions).
|
157 |
-
This space provides a basic setup and is intentionally sub-optimal to encourage you to develop your own, more robust solution. For instance for the delay process of the submit button, a solution could be to cache the answers and submit in a seperate action or even to answer the questions in async.
|
158 |
-
"""
|
159 |
)
|
|
|
160 |
|
161 |
-
|
162 |
-
|
163 |
-
run_button = gr.Button("Run Evaluation & Submit All Answers")
|
164 |
-
|
165 |
-
status_output = gr.Textbox(label="Run Status / Submission Result", lines=5, interactive=False)
|
166 |
-
# Removed max_rows=10 from DataFrame constructor
|
167 |
-
results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
|
168 |
-
|
169 |
-
run_button.click(
|
170 |
-
fn=run_and_submit_all,
|
171 |
-
outputs=[status_output, results_table]
|
172 |
-
)
|
173 |
|
|
|
174 |
if __name__ == "__main__":
|
175 |
-
|
176 |
-
#
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
else:
|
184 |
-
print("ℹ️ SPACE_HOST environment variable not found (running locally?).")
|
185 |
-
|
186 |
-
if space_id_startup: # Print repo URLs if SPACE_ID is found
|
187 |
-
print(f"✅ SPACE_ID found: {space_id_startup}")
|
188 |
-
print(f" Repo URL: https://huggingface.co/spaces/{space_id_startup}")
|
189 |
-
print(f" Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main")
|
190 |
-
else:
|
191 |
-
print("ℹ️ SPACE_ID environment variable not found (running locally?). Repo URL cannot be determined.")
|
192 |
-
|
193 |
-
print("-"*(60 + len(" App Starting ")) + "\n")
|
194 |
|
195 |
-
print("Launching Gradio Interface for Basic Agent Evaluation...")
|
196 |
-
demo.launch(debug=True, share=False)
|
|
|
1 |
+
"""LangGraph Agent"""
|
2 |
import os
|
3 |
+
from dotenv import load_dotenv
|
4 |
+
from langgraph.graph import START, StateGraph, MessagesState
|
5 |
+
from langgraph.prebuilt import tools_condition
|
6 |
+
from langgraph.prebuilt import ToolNode
|
7 |
+
from langchain_google_genai import ChatGoogleGenerativeAI
|
8 |
+
from langchain_groq import ChatGroq
|
9 |
+
from langchain_huggingface import ChatHuggingFace, HuggingFaceEndpoint, HuggingFaceEmbeddings
|
10 |
+
from langchain_community.tools.tavily_search import TavilySearchResults
|
11 |
+
from langchain_community.document_loaders import WikipediaLoader
|
12 |
+
from langchain_community.document_loaders import ArxivLoader
|
13 |
+
from langchain_community.vectorstores import SupabaseVectorStore
|
14 |
+
from langchain_core.messages import SystemMessage, HumanMessage
|
15 |
+
from langchain_core.tools import tool
|
16 |
+
from langchain.tools.retriever import create_retriever_tool
|
17 |
+
from supabase.client import Client, create_client
|
18 |
+
|
19 |
+
load_dotenv()
|
20 |
+
|
21 |
+
@tool
|
22 |
+
def multiply(a: int, b: int) -> int:
|
23 |
+
"""Multiply two numbers.
|
24 |
+
Args:
|
25 |
+
a: first int
|
26 |
+
b: second int
|
27 |
"""
|
28 |
+
return a * b
|
29 |
+
|
30 |
+
@tool
|
31 |
+
def add(a: int, b: int) -> int:
|
32 |
+
"""Add two numbers.
|
33 |
+
|
34 |
+
Args:
|
35 |
+
a: first int
|
36 |
+
b: second int
|
37 |
"""
|
38 |
+
return a + b
|
39 |
+
|
40 |
+
@tool
|
41 |
+
def subtract(a: int, b: int) -> int:
|
42 |
+
"""Subtract two numbers.
|
43 |
+
|
44 |
+
Args:
|
45 |
+
a: first int
|
46 |
+
b: second int
|
47 |
+
"""
|
48 |
+
return a - b
|
49 |
+
|
50 |
+
@tool
|
51 |
+
def divide(a: int, b: int) -> int:
|
52 |
+
"""Divide two numbers.
|
53 |
+
|
54 |
+
Args:
|
55 |
+
a: first int
|
56 |
+
b: second int
|
57 |
+
"""
|
58 |
+
if b == 0:
|
59 |
+
raise ValueError("Cannot divide by zero.")
|
60 |
+
return a / b
|
61 |
+
|
62 |
+
@tool
|
63 |
+
def modulus(a: int, b: int) -> int:
|
64 |
+
"""Get the modulus of two numbers.
|
65 |
+
|
66 |
+
Args:
|
67 |
+
a: first int
|
68 |
+
b: second int
|
69 |
+
"""
|
70 |
+
return a % b
|
71 |
+
|
72 |
+
@tool
|
73 |
+
def wiki_search(query: str) -> str:
|
74 |
+
"""Search Wikipedia for a query and return maximum 2 results.
|
75 |
+
|
76 |
+
Args:
|
77 |
+
query: The search query."""
|
78 |
+
search_docs = WikipediaLoader(query=query, load_max_docs=2).load()
|
79 |
+
formatted_search_docs = "\n\n---\n\n".join(
|
80 |
+
[
|
81 |
+
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content}\n</Document>'
|
82 |
+
for doc in search_docs
|
83 |
+
])
|
84 |
+
return {"wiki_results": formatted_search_docs}
|
85 |
+
|
86 |
+
@tool
|
87 |
+
def web_search(query: str) -> str:
|
88 |
+
"""Search Tavily for a query and return maximum 3 results.
|
89 |
+
|
90 |
+
Args:
|
91 |
+
query: The search query."""
|
92 |
+
search_docs = TavilySearchResults(max_results=3).invoke(query=query)
|
93 |
+
formatted_search_docs = "\n\n---\n\n".join(
|
94 |
+
[
|
95 |
+
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content}\n</Document>'
|
96 |
+
for doc in search_docs
|
97 |
+
])
|
98 |
+
return {"web_results": formatted_search_docs}
|
99 |
+
|
100 |
+
@tool
|
101 |
+
def arvix_search(query: str) -> str:
|
102 |
+
"""Search Arxiv for a query and return maximum 3 result.
|
103 |
+
|
104 |
+
Args:
|
105 |
+
query: The search query."""
|
106 |
+
search_docs = ArxivLoader(query=query, load_max_docs=3).load()
|
107 |
+
formatted_search_docs = "\n\n---\n\n".join(
|
108 |
+
[
|
109 |
+
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content[:1000]}\n</Document>'
|
110 |
+
for doc in search_docs
|
111 |
+
])
|
112 |
+
return {"arvix_results": formatted_search_docs}
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
# load the system prompt from the file
|
117 |
+
with open("system_prompt.txt", "r", encoding="utf-8") as f:
|
118 |
+
system_prompt = f.read()
|
119 |
+
|
120 |
+
# System message
|
121 |
+
sys_msg = SystemMessage(content=system_prompt)
|
122 |
+
|
123 |
+
# build a retriever
|
124 |
+
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-mpnet-base-v2") # dim=768
|
125 |
+
supabase: Client = create_client(
|
126 |
+
os.environ.get("SUPABASE_URL"),
|
127 |
+
os.environ.get("SUPABASE_SERVICE_KEY"))
|
128 |
+
vector_store = SupabaseVectorStore(
|
129 |
+
client=supabase,
|
130 |
+
embedding= embeddings,
|
131 |
+
table_name="documents",
|
132 |
+
query_name="match_documents_langchain",
|
133 |
+
)
|
134 |
+
create_retriever_tool = create_retriever_tool(
|
135 |
+
retriever=vector_store.as_retriever(),
|
136 |
+
name="Question Search",
|
137 |
+
description="A tool to retrieve similar questions from a vector store.",
|
138 |
+
)
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
tools = [
|
143 |
+
multiply,
|
144 |
+
add,
|
145 |
+
subtract,
|
146 |
+
divide,
|
147 |
+
modulus,
|
148 |
+
wiki_search,
|
149 |
+
web_search,
|
150 |
+
arvix_search,
|
151 |
+
]
|
152 |
+
|
153 |
+
# Build graph function
|
154 |
+
def build_graph(provider: str = "groq"):
|
155 |
+
"""Build the graph"""
|
156 |
+
# Load environment variables from .env file
|
157 |
+
if provider == "google":
|
158 |
+
# Google Gemini
|
159 |
+
llm = ChatGoogleGenerativeAI(model="gemini-2.0-flash", temperature=0)
|
160 |
+
elif provider == "groq":
|
161 |
+
# Groq https://console.groq.com/docs/models
|
162 |
+
llm = ChatGroq(model="qwen-qwq-32b", temperature=0) # optional : qwen-qwq-32b gemma2-9b-it
|
163 |
+
elif provider == "huggingface":
|
164 |
+
# TODO: Add huggingface endpoint
|
165 |
+
llm = ChatHuggingFace(
|
166 |
+
llm=HuggingFaceEndpoint(
|
167 |
+
url="https://api-inference.huggingface.co/models/Meta-DeepLearning/llama-2-7b-chat-hf",
|
168 |
+
temperature=0,
|
169 |
+
),
|
170 |
+
)
|
171 |
else:
|
172 |
+
raise ValueError("Invalid provider. Choose 'google', 'groq' or 'huggingface'.")
|
173 |
+
# Bind tools to LLM
|
174 |
+
llm_with_tools = llm.bind_tools(tools)
|
175 |
+
|
176 |
+
# Node
|
177 |
+
def assistant(state: MessagesState):
|
178 |
+
"""Assistant node"""
|
179 |
+
return {"messages": [llm_with_tools.invoke(state["messages"])]}
|
180 |
+
|
181 |
+
def retriever(state: MessagesState):
|
182 |
+
"""Retriever node"""
|
183 |
+
similar_question = vector_store.similarity_search(state["messages"][0].content)
|
184 |
+
example_msg = HumanMessage(
|
185 |
+
content=f"Here I provide a similar question and answer for reference: \n\n{similar_question[0].page_content}",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
)
|
187 |
+
return {"messages": [sys_msg] + state["messages"] + [example_msg]}
|
188 |
+
|
189 |
+
builder = StateGraph(MessagesState)
|
190 |
+
builder.add_node("retriever", retriever)
|
191 |
+
builder.add_node("assistant", assistant)
|
192 |
+
builder.add_node("tools", ToolNode(tools))
|
193 |
+
builder.add_edge(START, "retriever")
|
194 |
+
builder.add_edge("retriever", "assistant")
|
195 |
+
builder.add_conditional_edges(
|
196 |
+
"assistant",
|
197 |
+
tools_condition,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
)
|
199 |
+
builder.add_edge("tools", "assistant")
|
200 |
|
201 |
+
# Compile graph
|
202 |
+
return builder.compile()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
|
204 |
+
# test
|
205 |
if __name__ == "__main__":
|
206 |
+
question = "When was a picture of St. Thomas Aquinas first added to the Wikipedia page on the Principle of double effect?"
|
207 |
+
# Build the graph
|
208 |
+
graph = build_graph(provider="groq")
|
209 |
+
# Run the graph
|
210 |
+
messages = [HumanMessage(content=question)]
|
211 |
+
messages = graph.invoke({"messages": messages})
|
212 |
+
for m in messages["messages"]:
|
213 |
+
m.pretty_print()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
|
|
|