Skip to content

Commit 3f6076b

Browse files
Small readme updates
1 parent 8e9efff commit 3f6076b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ gptscript https://gptscript.ai/echo.gpt --input "Hello, World!"
5151

5252
***GPTScript is composed of tools.*** Each tool performs a series of actions similar to a function. Tools have available
5353
to them other tools that can be invoked similar to a function call. While similar to a function, the tools are
54-
implemented with a natural language and not code. ***The interaction of the tools is determined by the AI model***,
54+
primarily implemented with a natural language prompt. ***The interaction of the tools is determined by the AI model***,
5555
the model determines if the tool needs to be invoked and what arguments to pass. Tools are intended to be implemented
5656
with a natural language prompt but can also be implemented with a command or HTTP call.
5757

@@ -77,7 +77,7 @@ $ gptscript bob.gpt
7777

7878
OUTPUT:
7979

80-
Bob said, "I'm doing great fellow friendly AI tool!"
80+
Bob said, "Thanks for asking 'How are you doing?', I'm doing great fellow friendly AI tool!"
8181
```
8282
Tools can be implemented by invoking a program instead of a natural language prompt. The below
8383
example is the same as the previous example but implements Bob using bash.
@@ -97,7 +97,7 @@ Args: question: The question to ask Bob.
9797
echo "Thanks for asking ${question}, I'm doing great fellow friendly AI tool!"
9898
```
9999

100-
With these basic building blocks you can create complex scripts with AI interacting with, your local system, data,
100+
With these basic building blocks you can create complex scripts with AI interacting with AI, your local system, data,
101101
or external services.
102102

103103
## GPT File Reference

0 commit comments

Comments
 (0)