Skip to content

Commit

Permalink
📝 Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmai-dev committed Aug 7, 2023
1 parent 5b11b47 commit f21722f
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ For example, in the [math](./examples/math) directory, you can run:
go run . /input.txt
```

![run.png](examples%2Fmath%2Frun.png)
![run.png](./examples/math/run.png)

<!-- MARKDOWN LINKS & IMAGES -->

Expand Down
8 changes: 8 additions & 0 deletions examples/calendar/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Run the examples

To run an example with one of these input files, run `go run . <input-file-path>`.

you can run:
```
go run . /input.txt
```
1 change: 1 addition & 0 deletions examples/coffee_shop/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# todo
10 changes: 10 additions & 0 deletions examples/math/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Run the examples

To run an example with one of these input files, run `go run . <input-file-path>`.

you can run:
```
go run . /input.txt
```

![run.png](./run.png)
1 change: 1 addition & 0 deletions examples/music/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# todo
10 changes: 10 additions & 0 deletions examples/restaurant/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Run the examples

To run an example with one of these input files, run `go run . <input-file-path>`.

you can run:
```
go run . /input.txt
```

![run.png](./run.png)
Binary file added examples/restaurant/run.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions examples/sentiment/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Run the examples

To run an example with one of these input files, run `go run . <input-file-path>`.

you can run:
```
go run . /input.txt
```

![run.png](./run.png)
2 changes: 1 addition & 1 deletion model.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func newBaseLanguageModel(url string, options ...Option) LanguageModel {
m := &baseLanguageModel{
url: url,
retryMaxAttempts: 3,
retryPauseDuration: 2 * time.Second,
retryPauseDuration: 1000 * time.Millisecond,
headers: make(map[string]string),
}

Expand Down

0 comments on commit f21722f

Please sign in to comment.