Skip to content

Commit 7bf552c

Browse files
committed
1.15.1
1 parent 3bf9923 commit 7bf552c

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ Or fork & run on Vercel
2323

2424
- Support for the newly released Gemini Pro 1.5 models
2525
- Support for the new OpenAI 2024-04-09 Turbo models
26-
- Desktop: Ctrl + S, Ctrl + O to load/save chats
26+
- Ctrl+S and Ctrl+O to save/load chats on desktop
27+
- Resilience fixes after the large success of 1.15.0
2728

2829
> Note: Beam-2 and new larger features are being cooked outside of `main`.
2930

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "big-agi",
3-
"version": "1.15.0",
3+
"version": "1.15.1",
44
"private": true,
55
"author": "Enrico Ros <enrico.ros@gmail.com>",
66
"repository": "https://github.com/enricoros/big-agi",

src/apps/news/news.data.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import coverV114 from '../../../public/images/covers/release-cover-v1.14.0.png';
2727
import coverV113 from '../../../public/images/covers/release-cover-v1.13.0.png';
2828
// An image of a capybara sculpted entirely from black cotton candy, set against a minimalist backdrop with splashes of bright, contrasting sparkles. The capybara is calling on a 3D origami old-school pink telephone and the camera is zooming on the telephone. Close up photography, bokeh, white background.
2929
import coverV112 from '../../../public/images/covers/release-cover-v1.12.0.png';
30-
import { beamBlogUrl, beamReleaseDate } from './beam.data';
30+
import { beamBlogUrl } from './beam.data';
3131

3232

3333
interface NewsItem {
@@ -57,18 +57,19 @@ export const NewsItems: NewsItem[] = [
5757
]
5858
}*/
5959
{
60-
versionCode: '1.15.0',
60+
versionCode: '1.15.1',
6161
versionName: 'Beam',
62-
versionDate: new Date(beamReleaseDate),
62+
versionDate: new Date('2024-04-10T08:00:00Z'),
6363
versionCoverImage: coverV115,
6464
items: [
6565
{ text: <><B href={beamBlogUrl} wow>Beam</B>: Find better answers with multi-model AI reasoning</>, issue: 443, icon: ChatBeamIcon },
66-
{ text: <><B>Explore diverse perspectives</B> and <B>synthesize optimal responses</B></>, noBullet: true },
66+
// { text: <><B>Explore diverse perspectives</B> and <B>synthesize optimal responses</B></>, noBullet: true },
6767
{ text: <><B issue={436}>Auto-configure</B> models for managed deployments</>, issue: 436 },
6868
{ text: <>Message <B issue={476}>starring ⭐</B>, filtering and attachment</>, issue: 476 },
6969
{ text: <>Default persona improvements</> },
7070
{ text: <>Fixes to Gemini models and SVGs, improvements to UI and icons, and more</> },
7171
{ text: <>Developers: imperative LLM models discovery</>, dev: true },
72+
{ text: <>1.15.1: Support for <B>Gemini Pro 1.5</B> and <B>OpenAI 2024-04-09</B> models</> },
7273
],
7374
},
7475
{

0 commit comments

Comments
 (0)