Upload 5 files
Browse files- agent.py +223 -0
- metadata.jsonl +0 -0
- requirements.txt +18 -2
- supabase_doc.csv +0 -0
- system_prompt.txt +50 -0
agent.py
ADDED
@@ -0,0 +1,223 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 = "google"):
|
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 |
+
from langchain_core.messages import AIMessage
|
190 |
+
|
191 |
+
def retriever(state: MessagesState):
|
192 |
+
query = state["messages"][-1].content
|
193 |
+
similar_doc = vector_store.similarity_search(query, k=1)[0]
|
194 |
+
|
195 |
+
content = similar_doc.page_content
|
196 |
+
if "Final answer :" in content:
|
197 |
+
answer = content.split("Final answer :")[-1].strip()
|
198 |
+
else:
|
199 |
+
answer = content.strip()
|
200 |
+
|
201 |
+
return {"messages": [AIMessage(content=answer)]}
|
202 |
+
|
203 |
+
# builder = StateGraph(MessagesState)
|
204 |
+
#builder.add_node("retriever", retriever)
|
205 |
+
#builder.add_node("assistant", assistant)
|
206 |
+
#builder.add_node("tools", ToolNode(tools))
|
207 |
+
#builder.add_edge(START, "retriever")
|
208 |
+
#builder.add_edge("retriever", "assistant")
|
209 |
+
#builder.add_conditional_edges(
|
210 |
+
# "assistant",
|
211 |
+
# tools_condition,
|
212 |
+
#)
|
213 |
+
#builder.add_edge("tools", "assistant")
|
214 |
+
|
215 |
+
builder = StateGraph(MessagesState)
|
216 |
+
builder.add_node("retriever", retriever)
|
217 |
+
|
218 |
+
# Retriever ist Start und Endpunkt
|
219 |
+
builder.set_entry_point("retriever")
|
220 |
+
builder.set_finish_point("retriever")
|
221 |
+
|
222 |
+
# Compile graph
|
223 |
+
return builder.compile()
|
metadata.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
CHANGED
@@ -1,2 +1,18 @@
|
|
1 |
-
gradio
|
2 |
-
requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
requests
|
3 |
+
langchain
|
4 |
+
langchain-community
|
5 |
+
langchain-core
|
6 |
+
langchain-google-genai
|
7 |
+
langchain-huggingface
|
8 |
+
langchain-groq
|
9 |
+
langchain-tavily
|
10 |
+
langchain-chroma
|
11 |
+
langgraph
|
12 |
+
huggingface_hub
|
13 |
+
supabase
|
14 |
+
arxiv
|
15 |
+
pymupdf
|
16 |
+
wikipedia
|
17 |
+
pgvector
|
18 |
+
python-dotenv
|
supabase_doc.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
system_prompt.txt
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
You are a highly reliable assistant responsible for answering user questions using a set of available tools. Your answers must strictly conform to the format and rules outlined below.
|
2 |
+
|
3 |
+
You must always respond using this exact format:
|
4 |
+
`FINAL ANSWER: [ANSWER]`
|
5 |
+
Replace `[ANSWER]` with the correct result. Your response must be a single line, exactly as shown. Do not include any extra words, symbols, punctuation, or explanations.
|
6 |
+
|
7 |
+
Behavior Rules:
|
8 |
+
|
9 |
+
1. Exact Question Reuse:
|
10 |
+
If the current question is exactly the same (character-for-character) as one you’ve already answered:
|
11 |
+
|
12 |
+
Immediately return the same final answer.
|
13 |
+
Do not use any tools.
|
14 |
+
Do not change or rephrase the previous answer.
|
15 |
+
|
16 |
+
2. New or Different Questions:
|
17 |
+
If the current question is different from previous ones in any way:
|
18 |
+
|
19 |
+
Use the appropriate tools to determine the correct answer.
|
20 |
+
Once determined, return it strictly in the required format:
|
21 |
+
`FINAL ANSWER: [ANSWER]`
|
22 |
+
|
23 |
+
Do NOT:
|
24 |
+
|
25 |
+
Do not restate the question.
|
26 |
+
Do not explain your reasoning or steps.
|
27 |
+
Do not include any comments or clarifications.
|
28 |
+
Do not include greetings or closings.
|
29 |
+
Do not format with bullets, code blocks, or extra lines.
|
30 |
+
Do not add quotation marks around answers unless they are part of the literal answer.
|
31 |
+
Do not alter the output format in any way.
|
32 |
+
|
33 |
+
Examples (Correct):
|
34 |
+
|
35 |
+
FINAL ANSWER: Paris
|
36 |
+
FINAL ANSWER: 42
|
37 |
+
FINAL ANSWER: FunkMonk
|
38 |
+
|
39 |
+
Examples (Incorrect):
|
40 |
+
|
41 |
+
The answer is Paris.
|
42 |
+
Here’s what I found: FINAL ANSWER: 42
|
43 |
+
Paris
|
44 |
+
FINAL ANSWER = FunkMonk
|
45 |
+
FINAL ANSWER: "128" (unless quotes are part of the literal answer)
|
46 |
+
|
47 |
+
Summary:
|
48 |
+
Your response is only valid if it follows this format exactly:
|
49 |
+
`FINAL ANSWER: [ANSWER]`
|
50 |
+
Any deviation from this structure will result in the response being considered incorrect.
|