diff --git a/README.md b/README.md index ff81bd047..77bf98959 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,9 @@ Or fork & run on Vercel [//]: # (big-AGI is an open book; see the **[ready-to-ship and future ideas](https://github.com/users/enricoros/projects/4/views/2)** in our open roadmap) -### What's New in 1.16.1...1.16.3 · Jun 20, 2024 (patch releases) +### What's New in 1.16.1...1.16.4 · Jul 15, 2024 (patch releases) +- 1.16.4: 8192 tokens support for Claude 3.5 Sonnet - 1.16.3: Anthropic Claude 3.5 Sonnet model support - 1.16.2: Improve web downloads, as text, markdwon, or HTML - 1.16.2: Proper support for Gemini models diff --git a/docs/changelog.md b/docs/changelog.md index 3dc808bc9..c74b7ebab 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -10,8 +10,9 @@ by release. - milestone: [1.17.0](https://github.com/enricoros/big-agi/milestone/17) - work in progress: [big-AGI open roadmap](https://github.com/users/enricoros/projects/4/views/2), [help here](https://github.com/users/enricoros/projects/4/views/4) -### What's New in 1.16.1...1.16.3 · Jun 20, 2024 (patch releases) +### What's New in 1.16.1...1.16.4 · Jul 15, 2024 (patch releases) +- 1.16.4: 8192 tokens support for Claude 3.5 Sonnet - 1.16.3: Anthropic Claude 3.5 Sonnet model support - 1.16.2: Improve web downloads, as text, markdwon, or HTML - 1.16.2: Proper support for Gemini models diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index 5203d3449..e39190fa4 100644 --- a/src/apps/news/news.data.tsx +++ b/src/apps/news/news.data.tsx @@ -61,7 +61,7 @@ export const NewsItems: NewsItem[] = [ ] }*/ { - versionCode: '1.16.3', + versionCode: '1.16.4', versionName: 'Crystal Clear', versionDate: new Date('2024-06-07T05:00:00Z'), // versionDate: new Date('2024-05-13T19:00:00Z'), @@ -80,6 +80,7 @@ export const NewsItems: NewsItem[] = [ { text: <>1.16.1: Support for OpenAI GPT-4o }, { text: <>1.16.2: Proper Gemini support, HTML/Markdown downloads, and latest Mistral }, { text: <>1.16.3: Support for Claude 3.5 Sonnet (refresh your Anthropic models) }, + { text: <>1.16.4: 8192 tokens support for Claude 3.5 Sonnet }, ], }, { diff --git a/src/apps/news/news.version.tsx b/src/apps/news/news.version.tsx index c396b7cc1..26baa9a27 100644 --- a/src/apps/news/news.version.tsx +++ b/src/apps/news/news.version.tsx @@ -7,7 +7,7 @@ import { useAppStateStore } from '~/common/state/store-appstate'; // update this variable every time you want to broadcast a new version to clients -export const incrementalNewsVersion: number = 16.1; // not notifying for 16.3 +export const incrementalNewsVersion: number = 16.1; // not notifying for 1.16.4 interface NewsState {