Skip to content

Commit

Permalink
chore: fix readme example url (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmezei authored Jun 15, 2024
1 parent 531f146 commit abb0543
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ await session.start("Find a holiday destination");

#### Querying new messages

You might want to query new messages regularly with a <code>setTimeout</code> or <code>setInterval</code> to check for new <code>Message</code> (Check out [examples/simple.ts](examples/simple.ts) for a complete example use case of the SDK):
You might want to query new messages regularly with a <code>setTimeout</code> or <code>setInterval</code> to check for new <code>Message</code> (Check out [examples/simple.ts](https://github.com/fetchai/ai-engine-sdk-js/blob/main/examples/simple.ts) for a complete example use case of the SDK):

```javascript
const messages = await session.getMessages();
Expand Down Expand Up @@ -105,7 +105,7 @@ After finishing the conversation with AI Engine you can delete the session like
await session.delete();
```

If you would like to check out a complete example on how to integrate AI Engine into your app, feel free to checkout [examples/simple.ts](examples/simple.ts).
If you would like to check out a complete example on how to integrate AI Engine into your app, feel free to checkout [examples/simple.ts](https://github.com/fetchai/ai-engine-sdk-js/blob/main/examples/simple.ts).

## ✨ Contributing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchai/ai-engine-sdk",
"version": "0.1.0",
"version": "0.1.1",
"description": "",
"main": "dist/src/index.js",
"scripts": {
Expand Down

0 comments on commit abb0543

Please sign in to comment.