You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cookbook/introduction.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,15 +40,15 @@ $ ./bin/instructor hub list
40
40
41
41
### List Cookbooks
42
42
43
-
Run `./hub.sh list` you can see all the available tutorials and examples.
43
+
Run `./bin/instructor hub list` you can see all the available tutorials and examples.
44
44
45
45
```bash
46
46
$ ./bin/instructor hub list
47
47
```
48
48
49
49
### Reading a Cookbook
50
50
51
-
To read a tutorial, you can run `./hub.sh show {id}` to see the full tutorial in the terminal.
51
+
To read a tutorial, you can run `./bin/instructor hub show {id}` to see the full tutorial in the terminal.
52
52
53
53
```bash
54
54
$ ./bin/instructor hub show {id}
@@ -60,7 +60,7 @@ Currently, there is no way to page through the tutorial - feel free to contribut
60
60
61
61
### Running a Cookbook
62
62
63
-
To run a tutorial, you run `./hub.sh run {id}` in terminal - it will execute the code and show the output. You need to have your OPENAI_API_KEY set in your environment (.env file in root directory of your copy of instructor-php repo).
63
+
To run a tutorial, you run `./bin/instructor hub run {id}` in terminal - it will execute the code and show the output. You need to have your OPENAI_API_KEY set in your environment (.env file in root directory of your copy of instructor-php repo).
64
64
65
65
```bash
66
66
$ ./bin/instructor hub run {id}
@@ -69,7 +69,7 @@ $ ./bin/instructor hub run {id}
69
69
70
70
### Running all Cookbooks
71
71
72
-
This is mostly for testing if cookbooks are executed properly, but you can run `./hub.sh all {id}` to run all the tutorials and examples in the terminal, starting from the one you specify.
72
+
This is mostly for testing if cookbooks are executed properly, but you can run `./bin/instructor hub all {id}` to run all the tutorials and examples in the terminal, starting from the one you specify.
0 commit comments