Spaces:
Running on Zero
Running on Zero
File size: 11,058 Bytes
d6efed0 | 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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | {
"cells": [
{
"cell_type": "markdown",
"id": "23f53670-1a73-46ba-a754-4a497e8e0e64",
"metadata": {},
"source": [
"# The Price is Right\n",
"\n",
"## Week 8 Order of Play\n",
"\n",
"Day 1: Modal.com and SpecialistAgent \n",
"Day 2: RAG, FrontierAgent, Ensemble Agent \n",
"Day 3: ScannerAgent, MessengerAgent \n",
"Day 4: AutonomousPlannerAgent \n",
"Day 5: The Price Is Right Finale\n",
"\n",
"\n",
"Now it's time for the Planning Agent"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a9329b9c",
"metadata": {},
"outputs": [],
"source": [
"import json\n",
"from openai import OpenAI\n",
"from dotenv import load_dotenv\n",
"from agents.scanner_agent import ScannerAgent\n",
"import chromadb\n",
"import logging\n",
"load_dotenv(override=True)\n",
"openai = OpenAI()\n",
"MODEL = \"gpt-5.1\""
]
},
{
"cell_type": "markdown",
"id": "3ad465f5",
"metadata": {},
"source": [
"## Start with some test data"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8991e888",
"metadata": {},
"outputs": [],
"source": [
"test_results = ScannerAgent().test_scan()\n",
"test_results"
]
},
{
"cell_type": "markdown",
"id": "fb93255d",
"metadata": {},
"source": [
"## Now let's create 3 pretend functions.."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "64873072",
"metadata": {},
"outputs": [],
"source": [
"def scan_the_internet_for_bargains() -> str:\n",
" \"\"\" This tool scans the internet for great deals and gets a curated list of promising deals \"\"\"\n",
" print(\"Fake function to scan the internet - this returns a hardcoded set of deals\")\n",
" return test_results.model_dump_json()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "af365df5",
"metadata": {},
"outputs": [],
"source": [
"def estimate_true_value(description: str) -> str:\n",
" \"\"\"\n",
" This tool estimates the true value of a product based on a text description of it\n",
" \"\"\"\n",
" print(f\"Fake function to estimating true value of {description[:20]}... - this always returns $300\")\n",
" return f\"Product {description} has an estimated true value of $300\""
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "35f15f8e",
"metadata": {},
"outputs": [],
"source": [
"def notify_user_of_deal(description: str, deal_price: float, estimated_true_value: float, url: str) -> str:\n",
" \"\"\"\n",
" This tool notifies the user of a great deal, given a description of it, the price of the deal, and the estimated true value\n",
" \"\"\"\n",
" print(f\"Fake function to notify user of {description} which costs {deal_price} and estimate is {estimated_true_value}\")\n",
" return \"notification sent ok\""
]
},
{
"cell_type": "markdown",
"id": "2eda1e45",
"metadata": {},
"source": [
"### Let's try them out"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b1c4beb8",
"metadata": {},
"outputs": [],
"source": [
"notify_user_of_deal(\"a new iphone\", 100, 1000, \"https://www.apple.com/iphone\")"
]
},
{
"cell_type": "markdown",
"id": "cb5bfdd1",
"metadata": {},
"source": [
"### OK now a big block of JSON"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "2be6d141",
"metadata": {},
"outputs": [],
"source": [
"scan_function = {\n",
" \"name\": \"scan_the_internet_for_bargains\",\n",
" \"description\": \"Returns top bargains scraped from the internet along with the price each item is being offered for\",\n",
" \"parameters\": {\n",
" \"type\": \"object\",\n",
" \"properties\": {},\n",
" \"required\": [],\n",
" \"additionalProperties\": False\n",
" }\n",
" }\n",
"\n",
"estimate_function = {\n",
" \"name\": \"estimate_true_value\",\n",
" \"description\": \"Given the description of an item, estimate how much it is actually worth\",\n",
" \"parameters\": {\n",
" \"type\": \"object\",\n",
" \"properties\": {\n",
" \"description\": {\n",
" \"type\": \"string\",\n",
" \"description\": \"The description of the item to be estimated\"\n",
" },\n",
" },\n",
" \"required\": [\"description\"],\n",
" \"additionalProperties\": False\n",
" }\n",
"}\n",
"\n",
"notify_function = {\n",
" \"name\": \"notify_user_of_deal\",\n",
" \"description\": \"Send the user a push notification about the single most compelling deal; only call this one time\",\n",
" \"parameters\": {\n",
" \"type\": \"object\",\n",
" \"properties\": {\n",
" \"description\": {\n",
" \"type\": \"string\",\n",
" \"description\": \"The description of the item itself scraped from the internet\"\n",
" },\n",
" \"deal_price\": {\n",
" \"type\": \"number\",\n",
" \"description\": \"The price offered by this deal scraped from the internet\"\n",
" }\n",
" ,\n",
" \"estimated_true_value\": {\n",
" \"type\": \"number\",\n",
" \"description\": \"The estimated actual value that this is worth\"\n",
" }\n",
" ,\n",
" \"url\": {\n",
" \"type\": \"string\",\n",
" \"description\": \"The URL of this deal as scraped from the internet\"\n",
" }\n",
" },\n",
" \"required\": [\"description\", \"deal_price\", \"estimated_true_value\", \"url\"],\n",
" \"additionalProperties\": False\n",
" }\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "28771d9a",
"metadata": {},
"outputs": [],
"source": [
"tools = [{\"type\": \"function\", \"function\": scan_function},\n",
" {\"type\": \"function\", \"function\": estimate_function},\n",
" {\"type\": \"function\", \"function\": notify_function}\n",
" ]"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ffb41dd9",
"metadata": {},
"outputs": [],
"source": [
"tools"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4e462e3f",
"metadata": {},
"outputs": [],
"source": [
"def handle_tool_call(message):\n",
" \"\"\"\n",
" Actually call the tools associated with this message\n",
" \"\"\"\n",
" results = []\n",
" for tool_call in message.tool_calls:\n",
" tool_name = tool_call.function.name\n",
" arguments = json.loads(tool_call.function.arguments)\n",
" tool = globals().get(tool_name)\n",
" result = tool(**arguments) if tool else {}\n",
" results.append({\"role\": \"tool\",\"content\": json.dumps(result),\"tool_call_id\": tool_call.id})\n",
" return results"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "fcc9d254",
"metadata": {},
"outputs": [],
"source": [
"system_message = \"You find great deals on bargain products using your tools, and notify the user of the best bargain.\"\n",
"user_message = \"\"\"\n",
"First, use your tool to scan the internet for bargain deals. Then for each deal, use your tool to estimate its true value.\n",
"Then pick the single most compelling deal where the price is much lower than the estimated true value, and use your tool to notify the user.\n",
"Then just reply OK to indicate success.\n",
"\"\"\"\n",
"messages = [{\"role\": \"system\", \"content\": system_message},{\"role\": \"user\", \"content\": user_message}]"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "bf42ee15",
"metadata": {},
"outputs": [],
"source": [
"messages"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5b7e3b29",
"metadata": {},
"outputs": [],
"source": [
"done = False\n",
"while not done:\n",
" response = openai.chat.completions.create(model=MODEL, messages=messages, tools=tools)\n",
" if response.choices[0].finish_reason==\"tool_calls\":\n",
" message = response.choices[0].message\n",
" results = handle_tool_call(message)\n",
" messages.append(message)\n",
" messages.extend(results)\n",
" else:\n",
" done = True\n",
"response.choices[0].message.content"
]
},
{
"cell_type": "markdown",
"id": "9b580cd6",
"metadata": {},
"source": [
"## And now.. into an Autonomous Planning Agent\n",
"\n",
"And switching the fake functions for REAL functions!"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "17cfde98",
"metadata": {},
"outputs": [],
"source": [
"root = logging.getLogger()\n",
"root.setLevel(logging.INFO)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "f9d0938d",
"metadata": {},
"outputs": [],
"source": [
"DB = \"products_vectorstore\"\n",
"client = chromadb.PersistentClient(path=DB)\n",
"collection = client.get_or_create_collection('products')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6a95bfb7",
"metadata": {},
"outputs": [],
"source": [
"from agents.autonomous_planning_agent import AutonomousPlanningAgent\n",
"agent = AutonomousPlanningAgent(collection)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e30c66e1",
"metadata": {},
"outputs": [],
"source": [
"agent.plan()"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "09e3e5cd",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": ".venv",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.12"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|