Paperbag commited on
Commit
d3a1a1a
·
1 Parent(s): 13e8626
Files changed (3) hide show
  1. __pycache__/agent.cpython-39.pyc +0 -0
  2. agent.py +7 -6
  3. app copy.py +208 -0
__pycache__/agent.cpython-39.pyc ADDED
Binary file (3.61 kB). View file
 
agent.py CHANGED
@@ -1,5 +1,5 @@
1
  import os
2
- from typing import TypedDict, List, Dict, Any, Optional
3
  from langchain_core import tools
4
  from langgraph.graph import StateGraph, START, END
5
  from langchain_huggingface import ChatHuggingFace, HuggingFaceEndpoint, HuggingFacePipeline
@@ -50,7 +50,7 @@ def web_search(keywords: str, max_results:int = 5) -> str:
50
 
51
 
52
  class AgentState(TypedDict):
53
- messages: List[HumanMessage | AIMessage]
54
 
55
 
56
  def read_message(state: AgentState) -> AgentState:
@@ -106,14 +106,15 @@ def answer_message(state: AgentState) -> AgentState:
106
  args = tool_call['args']
107
  tool = tools_by_name[name]
108
  tool_result = tool.invoke(args)
109
- messages.append(tool_result)
110
 
111
  # Step 3: Pass results back to model for final response
112
- final_response = model_with_tools.invoke(messages)
113
- print(final_response.text)
 
114
 
115
  # Append the model's answer to the messages list
116
- return {"messages": messages + [final_response]}
117
 
118
 
119
 
 
1
  import os
2
+ from typing import TypedDict, List, Dict, Any, Optional, Union
3
  from langchain_core import tools
4
  from langgraph.graph import StateGraph, START, END
5
  from langchain_huggingface import ChatHuggingFace, HuggingFaceEndpoint, HuggingFacePipeline
 
50
 
51
 
52
  class AgentState(TypedDict):
53
+ messages: List[Union[HumanMessage, AIMessage]]
54
 
55
 
56
  def read_message(state: AgentState) -> AgentState:
 
106
  args = tool_call['args']
107
  tool = tools_by_name[name]
108
  tool_result = tool.invoke(args)
109
+ # prompt.append(tool_result)
110
 
111
  # Step 3: Pass results back to model for final response
112
+ print(f"Messages: {messages}")
113
+ final_response = model_with_tools.invoke(prompt + tool_result)
114
+ print(f"Final response: {final_response}")
115
 
116
  # Append the model's answer to the messages list
117
+ return {"messages": [final_response]}
118
 
119
 
120
 
app copy.py ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ # import gradio as gr
3
+ import requests
4
+ import inspect
5
+ import pandas as pd
6
+ from langchain_core.messages import HumanMessage
7
+ from agent import build_graph
8
+
9
+ # (Keep Constants as is)
10
+ # --- Constants ---
11
+ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
12
+
13
+ # --- Basic Agent Definition ---
14
+ # ----- THIS IS WERE YOU CAN BUILD WHAT YOU WANT ------
15
+ class BasicAgent:
16
+ def __init__(self):
17
+ print("BasicAgent initialized.")
18
+ self.graph = build_graph()
19
+
20
+ def __call__(self, question: str) -> str:
21
+ print(f"Agent received question (first 50 chars): {question[:50]}...")
22
+ messages = [HumanMessage(content=question)]
23
+ result = self.graph.invoke({"messages": messages})
24
+ answer = result['messages'][-1].content
25
+ print(f"Agent returning answer: {answer}")
26
+ return answer
27
+
28
+ agent = BasicAgent()
29
+ output = agent('How many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest 2022 version of english wikipedia.')
30
+ print(output)
31
+
32
+
33
+ # def run_and_submit_all( profile: gr.OAuthProfile | None):
34
+ # """
35
+ # Fetches all questions, runs the BasicAgent on them, submits all answers,
36
+ # and displays the results.
37
+ # """
38
+ # # --- Determine HF Space Runtime URL and Repo URL ---
39
+ # space_id = os.getenv("SPACE_ID") # Get the SPACE_ID for sending link to the code
40
+
41
+ # if profile:
42
+ # username= f"{profile.username}"
43
+ # print(f"User logged in: {username}")
44
+ # else:
45
+ # print("User not logged in.")
46
+ # return "Please Login to Hugging Face with the button.", None
47
+
48
+ # api_url = DEFAULT_API_URL
49
+ # questions_url = f"{api_url}/questions"
50
+ # submit_url = f"{api_url}/submit"
51
+
52
+ # # 1. Instantiate Agent ( modify this part to create your agent)
53
+ # try:
54
+ # agent = BasicAgent()
55
+ # except Exception as e:
56
+ # print(f"Error instantiating agent: {e}")
57
+ # return f"Error initializing agent: {e}", None
58
+ # # In the case of an app running as a hugging Face space, this link points toward your codebase ( usefull for others so please keep it public)
59
+ # agent_code = f"https://huggingface.co/spaces/{space_id}/tree/main"
60
+ # print(agent_code)
61
+
62
+ # # 2. Fetch Questions
63
+ # print(f"Fetching questions from: {questions_url}")
64
+ # try:
65
+ # response = requests.get(questions_url, timeout=15)
66
+ # response.raise_for_status()
67
+ # questions_data = response.json()
68
+ # if not questions_data:
69
+ # print("Fetched questions list is empty.")
70
+ # return "Fetched questions list is empty or invalid format.", None
71
+ # print(f"Fetched {len(questions_data)} questions.")
72
+ # except requests.exceptions.RequestException as e:
73
+ # print(f"Error fetching questions: {e}")
74
+ # return f"Error fetching questions: {e}", None
75
+ # except requests.exceptions.JSONDecodeError as e:
76
+ # print(f"Error decoding JSON response from questions endpoint: {e}")
77
+ # print(f"Response text: {response.text[:500]}")
78
+ # return f"Error decoding server response for questions: {e}", None
79
+ # except Exception as e:
80
+ # print(f"An unexpected error occurred fetching questions: {e}")
81
+ # return f"An unexpected error occurred fetching questions: {e}", None
82
+
83
+ # # 3. Run your Agent
84
+ # results_log = []
85
+ # answers_payload = []
86
+ # # print(f"Running agent on {len(questions_data)} questions...")
87
+ # print(f"Running agent on {len(questions_data[:5])} questions temporarily...")
88
+ # for item in questions_data[:5]:
89
+ # task_id = item.get("task_id")
90
+ # question_text = item.get("question")
91
+ # if not task_id or question_text is None:
92
+ # print(f"Skipping item with missing task_id or question: {item}")
93
+ # continue
94
+ # try:
95
+ # submitted_answer = agent(question_text)
96
+ # answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
97
+ # results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": submitted_answer})
98
+ # except Exception as e:
99
+ # print(f"Error running agent on task {task_id}: {e}")
100
+ # results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": f"AGENT ERROR: {e}"})
101
+
102
+ # if not answers_payload:
103
+ # print("Agent did not produce any answers to submit.")
104
+ # return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
105
+
106
+ # # 4. Prepare Submission
107
+ # submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
108
+ # status_update = f"Agent finished. Submitting {len(answers_payload)} answers for user '{username}'..."
109
+ # print(status_update)
110
+
111
+ # # 5. Submit
112
+ # print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
113
+ # try:
114
+ # response = requests.post(submit_url, json=submission_data, timeout=60)
115
+ # response.raise_for_status()
116
+ # result_data = response.json()
117
+ # final_status = (
118
+ # f"Submission Successful!\n"
119
+ # f"User: {result_data.get('username')}\n"
120
+ # f"Overall Score: {result_data.get('score', 'N/A')}% "
121
+ # f"({result_data.get('correct_count', '?')}/{result_data.get('total_attempted', '?')} correct)\n"
122
+ # f"Message: {result_data.get('message', 'No message received.')}"
123
+ # )
124
+ # print("Submission successful.")
125
+ # results_df = pd.DataFrame(results_log)
126
+ # return final_status, results_df
127
+ # except requests.exceptions.HTTPError as e:
128
+ # error_detail = f"Server responded with status {e.response.status_code}."
129
+ # try:
130
+ # error_json = e.response.json()
131
+ # error_detail += f" Detail: {error_json.get('detail', e.response.text)}"
132
+ # except requests.exceptions.JSONDecodeError:
133
+ # error_detail += f" Response: {e.response.text[:500]}"
134
+ # status_message = f"Submission Failed: {error_detail}"
135
+ # print(status_message)
136
+ # results_df = pd.DataFrame(results_log)
137
+ # return status_message, results_df
138
+ # except requests.exceptions.Timeout:
139
+ # status_message = "Submission Failed: The request timed out."
140
+ # print(status_message)
141
+ # results_df = pd.DataFrame(results_log)
142
+ # return status_message, results_df
143
+ # except requests.exceptions.RequestException as e:
144
+ # status_message = f"Submission Failed: Network error - {e}"
145
+ # print(status_message)
146
+ # results_df = pd.DataFrame(results_log)
147
+ # return status_message, results_df
148
+ # except Exception as e:
149
+ # status_message = f"An unexpected error occurred during submission: {e}"
150
+ # print(status_message)
151
+ # results_df = pd.DataFrame(results_log)
152
+ # return status_message, results_df
153
+
154
+
155
+ # # --- Build Gradio Interface using Blocks ---
156
+ # with gr.Blocks() as demo:
157
+ # gr.Markdown("# Basic Agent Evaluation Runner")
158
+ # gr.Markdown(
159
+ # """
160
+ # **Instructions:**
161
+
162
+ # 1. Please clone this space, then modify the code to define your agent's logic, the tools, the necessary packages, etc ...
163
+ # 2. Log in to your Hugging Face account using the button below. This uses your HF username for submission.
164
+ # 3. Click 'Run Evaluation & Submit All Answers' to fetch questions, run your agent, submit answers, and see the score.
165
+
166
+ # ---
167
+ # **Disclaimers:**
168
+ # 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).
169
+ # 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.
170
+ # """
171
+ # )
172
+
173
+ # gr.LoginButton()
174
+
175
+ # run_button = gr.Button("Run Evaluation & Submit All Answers")
176
+
177
+ # status_output = gr.Textbox(label="Run Status / Submission Result", lines=5, interactive=False)
178
+ # # Removed max_rows=10 from DataFrame constructor
179
+ # results_table = gr.DataFrame(label="Questions and Agent Answers", wrap=True)
180
+
181
+ # run_button.click(
182
+ # fn=run_and_submit_all,
183
+ # outputs=[status_output, results_table]
184
+ # )
185
+
186
+ # if __name__ == "__main__":
187
+ # print("\n" + "-"*30 + " App Starting " + "-"*30)
188
+ # # Check for SPACE_HOST and SPACE_ID at startup for information
189
+ # space_host_startup = os.getenv("SPACE_HOST")
190
+ # space_id_startup = os.getenv("SPACE_ID") # Get SPACE_ID at startup
191
+
192
+ # if space_host_startup:
193
+ # print(f"✅ SPACE_HOST found: {space_host_startup}")
194
+ # print(f" Runtime URL should be: https://{space_host_startup}.hf.space")
195
+ # else:
196
+ # print("ℹ️ SPACE_HOST environment variable not found (running locally?).")
197
+
198
+ # if space_id_startup: # Print repo URLs if SPACE_ID is found
199
+ # print(f"✅ SPACE_ID found: {space_id_startup}")
200
+ # print(f" Repo URL: https://huggingface.co/spaces/{space_id_startup}")
201
+ # print(f" Repo Tree URL: https://huggingface.co/spaces/{space_id_startup}/tree/main")
202
+ # else:
203
+ # print("ℹ️ SPACE_ID environment variable not found (running locally?). Repo URL cannot be determined.")
204
+
205
+ # print("-"*(60 + len(" App Starting ")) + "\n")
206
+
207
+ # print("Launching Gradio Interface for Basic Agent Evaluation...")
208
+ # demo.launch(debug=True, share=False)