diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 513fac0..e58457c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.18.1" + ".": "0.18.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 175694e..379d228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.18.2 (2025-12-19) + +Full Changelog: [v0.18.1...v0.18.2](https://github.com/perplexityai/perplexity-node/compare/v0.18.1...v0.18.2) + +### Documentation + +* add more examples ([23b89c4](https://github.com/perplexityai/perplexity-node/commit/23b89c4a7ba987715699edc8abfe65dac7ec0a21)) + ## 0.18.1 (2025-12-05) Full Changelog: [v0.18.0...v0.18.1](https://github.com/perplexityai/perplexity-node/compare/v0.18.0...v0.18.1) diff --git a/README.md b/README.md index d6ea22d..3716a09 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ import Perplexity from '@perplexity-ai/perplexity_ai'; const client = new Perplexity(); const stream = await client.chat.completions.create({ - messages: [{ role: 'user', content: 'What is the capital of France?' }], + messages: [{ role: 'user', content: 'Tell me about the latest developments in AI' }], model: 'sonar', stream: true, }); diff --git a/package.json b/package.json index 66662cd..fbc1e77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@perplexity-ai/perplexity_ai", - "version": "0.18.1", + "version": "0.18.2", "description": "The official TypeScript library for the Perplexity API", "author": "Perplexity ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 53b4ff4..9056fe1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.18.1'; // x-release-please-version +export const VERSION = '0.18.2'; // x-release-please-version