Skip to content

Commit b072170

Browse files
authored
Update README.md (#59)
Fixed some potential misspellings/errors.
1 parent 2012d31 commit b072170

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lessons/04-structured-output/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you haven't already, set up your development environment. Here's how you can
1212

1313
## Related resources
1414

15-
It's worth rewatching the video of prompt engineering is it lays the foundations of what you're about to learn in this chapter, that is how to have the AI deliver more structured outputs.
15+
It's worth rewatching the video on prompt engineering as it lays the foundations of what you're about to learn in this chapter, that is how to have the AI deliver more structured outputs.
1616

1717
[![Watch a short video about prompt engineering](https://img.youtube.com/vi/gQ6TlyxBmWs/0.jpg)](https://www.youtube.com/watch?v=gQ6TlyxBmWs&list=PLlrxD0HtieHi5ZpsHULPLxm839IrhmeDk&index=3)
1818

@@ -483,7 +483,7 @@ parameters: location, check_in, check_out, budget
483483
skill: order_food
484484
parameters: cuisine, delivery_address, payment_method
485485
486-
Figure out which skill to use based on a users prompt and extract the necessary parameters, respond with the extracted data in JSON format with columns skill, parameters, extracted_data
486+
Figure out which skill to use based on a user's prompt and extract the necessary parameters, respond with the extracted data in JSON format with columns skill, parameters, extracted_data
487487
488488
{user_input}
489489
```
@@ -522,7 +522,7 @@ Assuming that {user_input} contains the previous skills, let's try out the follo
522522
}
523523
```
524524

525-
This combination of presenting skills and parameters and extracting data from prompts is also known as _tool calling_ or _function calling_. A response like this from your model makes it easy for you as developer to understand what the user wants and how to call a corresponding function to fulfill the user's request.
525+
This combination of presenting skills and parameters and extracting data from prompts is also known as _tool calling_ or _function calling_. A response like this from your model makes it easy for you as a developer to understand what the user wants and how to call a corresponding function to fulfill the user's request.
526526

527527
**You:** Well that lasted for a full 20 seconds. Actually, what you said there, George, that was pretty good.
528528

0 commit comments

Comments
 (0)