sergiopaniego HF Staff DKDanielBeck commited on
Commit
0fa2a64
·
verified ·
1 Parent(s): 6e0e904

Add 'Observation:' to the get_weather function (#111)

Browse files

- Add 'Observation:' to the get_weather function (b1975423ce17709adb76d020e9213bd52415e8dc)


Co-authored-by: Daniel Beck <[email protected]>

Files changed (1) hide show
  1. unit1/dummy_agent_library.ipynb +1 -1
unit1/dummy_agent_library.ipynb CHANGED
@@ -401,7 +401,7 @@
401
  "source": [
402
  "# Dummy function\n",
403
  "def get_weather(location):\n",
404
- " return f\"the weather in {location} is sunny with low temperatures. \\n\"\n",
405
  "\n",
406
  "get_weather('London')"
407
  ]
 
401
  "source": [
402
  "# Dummy function\n",
403
  "def get_weather(location):\n",
404
+ " return f\"Observation: the weather in {location} is sunny with low temperatures. \\n\"\n",
405
  "\n",
406
  "get_weather('London')"
407
  ]