From abb0543f4dd096c9da28512906d5b2b9b4faf2de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Mezei?= Date: Sat, 15 Jun 2024 15:49:12 +0100 Subject: [PATCH] chore: fix readme example url (#9) --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9a3eca..124fc92 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ await session.start("Find a holiday destination"); #### Querying new messages -You might want to query new messages regularly with a setTimeout or setInterval to check for new Message (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 setTimeout or setInterval to check for new Message (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(); @@ -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 diff --git a/package.json b/package.json index f5a7a1e..7ea936d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fetchai/ai-engine-sdk", - "version": "0.1.0", + "version": "0.1.1", "description": "", "main": "dist/src/index.js", "scripts": {