From 6067c289ab384298cfdd22212f2f209e31f05064 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:52:00 -0700 Subject: [PATCH 01/12] OpenAI: remove vision previews --- src/modules/llms/server/openai/models.data.ts | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 3569d4a78..272b5581e 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -150,34 +150,6 @@ const _knownOpenAIChatModels: ManualMappings = [ hidden: true, }, - // GPT4 Vision Previews - { - idPrefix: 'gpt-4-vision-preview', // GPT-4 Turbo vision preview - label: 'GPT-4 Preview Vision', - description: 'GPT-4 model with the ability to understand images, in addition to all other GPT-4 Turbo capabilities. This is a preview model, we recommend developers to now use gpt-4-turbo which includes vision capabilities. Currently points to gpt-4-1106-vision-preview.', - symLink: 'gpt-4-1106-vision-preview', - // copied from symlinked - isPreview: true, - contextWindow: 128000, - maxCompletionTokens: 4096, - trainingDataCutoff: 'Apr 2023', - interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn], - pricing: { chatIn: 10, chatOut: 30 }, - hidden: true, // Deprecated in favor of gpt-4-turbo - }, - { - idPrefix: 'gpt-4-1106-vision-preview', - label: 'GPT-4 Preview Vision (1106)', - description: 'GPT-4 model with the ability to understand images, in addition to all other GPT-4 Turbo capabilities. This is a preview model, we recommend developers to now use gpt-4-turbo which includes vision capabilities. Returns a maximum of 4,096 output tokens.', - isPreview: true, - contextWindow: 128000, - maxCompletionTokens: 4096, - trainingDataCutoff: 'Apr 2023', - interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn], - pricing: { chatIn: 10, chatOut: 30 }, - hidden: true, // Deprecated in favor of gpt-4-turbo - }, - // GPT4-32k's { From 4e89e0b1e4aab88d63eabe41e0a94dbec98960b2 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:52:19 -0700 Subject: [PATCH 02/12] OpenAI: clean IDs --- src/modules/llms/server/openai/models.data.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 272b5581e..e277852a7 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -111,7 +111,7 @@ const _knownOpenAIChatModels: ManualMappings = [ // GPT4 Turbo Previews { - idPrefix: 'gpt-4-turbo-preview', // GPT-4 Turbo preview model -> 0125 + idPrefix: 'gpt-4-turbo-preview', label: 'GPT-4 Preview Turbo', description: 'GPT-4 Turbo preview model. Currently points to gpt-4-0125-preview.', symLink: 'gpt-4-0125-preview', @@ -126,7 +126,7 @@ const _knownOpenAIChatModels: ManualMappings = [ benchmark: { cbaElo: 1245 }, }, { - idPrefix: 'gpt-4-0125-preview', // GPT-4 Turbo preview model + idPrefix: 'gpt-4-0125-preview', label: 'GPT-4 Turbo (0125)', description: 'GPT-4 Turbo preview model intended to reduce cases of "laziness" where the model doesn\'t complete a task.', contextWindow: 128000, @@ -224,7 +224,8 @@ const _knownOpenAIChatModels: ManualMappings = [ isLegacy: true, }, - // 3.5-Turbo's (16ks) + // 3.5-Turbo + // As of July 2024, gpt-4o-mini should be used in place of gpt-3.5-turbo, as it is cheaper, more capable, multimodal, and just as fast. { idPrefix: 'gpt-3.5-turbo-0125', label: '3.5-Turbo (0125)', From 6e16e989ac42f93e5b2d9ba0dab15f8070b4f6c0 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:53:09 -0700 Subject: [PATCH 03/12] OpenAI: move 4o-mini --- src/modules/llms/server/openai/models.data.ts | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index e277852a7..c91dc18fe 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -54,9 +54,12 @@ const _knownOpenAIChatModels: ManualMappings = [ // GPT-4o mini { - idPrefix: 'gpt-4o-mini-2024-07-18', - label: 'GPT-4o Mini (2024-07-18)', - description: 'Affordable model for fast, lightweight tasks. GPT-4o mini is cheaper and more capable than GPT-3.5 Turbo.', + idPrefix: 'gpt-4o-mini', + label: 'GPT-4o mini', + description: 'Currently points to gpt-4o-mini-2024-07-18.', + symLink: 'gpt-4o-mini-2024-07-18', + hidden: true, + // copied from symlinked contextWindow: 128000, maxCompletionTokens: 16384, trainingDataCutoff: 'Oct 2023', @@ -65,18 +68,14 @@ const _knownOpenAIChatModels: ManualMappings = [ benchmark: { cbaElo: 1277, cbaMmlu: 82.0 }, }, { - idPrefix: 'gpt-4o-mini', - label: 'GPT-4o mini', - description: 'Currently points to gpt-4o-mini-2024-07-18.', - symLink: 'gpt-4o-mini-2024-07-18', - hidden: true, - // copied from symlinked + idPrefix: 'gpt-4o-mini-2024-07-18', + label: 'GPT-4o Mini (2024-07-18)', + description: 'Affordable model for fast, lightweight tasks. GPT-4o mini is cheaper and more capable than GPT-3.5 Turbo.', contextWindow: 128000, maxCompletionTokens: 16384, trainingDataCutoff: 'Oct 2023', interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn, LLM_IF_OAI_Json], pricing: { chatIn: 0.15, chatOut: 0.60 }, - benchmark: { cbaElo: 1277, cbaMmlu: 82.0 }, }, // o1-preview and o1-mini (beta) From 713079f2f28c057fb9aeb0b38df92a21f63a777d Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:53:20 -0700 Subject: [PATCH 04/12] OpenAI: bits --- src/modules/llms/server/openai/models.data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index c91dc18fe..0061c1e93 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -35,14 +35,14 @@ const _knownOpenAIChatModels: ManualMappings = [ contextWindow: 128000, maxCompletionTokens: 16384, trainingDataCutoff: 'Oct 2023', - interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn, LLM_IF_OAI_Json], + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn, LLM_IF_OAI_Json], // + Structured Outputs? pricing: { chatIn: 2.5, chatOut: 10 }, benchmark: { cbaElo: 1286 + 1 }, }, { idPrefix: 'gpt-4o-2024-05-13', label: 'GPT-4o (2024-05-13)', - description: 'Advanced, multimodal flagship model that’s cheaper and faster than GPT-4 Turbo.', + description: 'Advanced, multimodal flagship model that\'s cheaper and faster than GPT-4 Turbo.', contextWindow: 128000, maxCompletionTokens: 4096, trainingDataCutoff: 'Oct 2023', From 10bba190795cab773402e85419c75d263cdb66a9 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:53:32 -0700 Subject: [PATCH 05/12] OpenAI: add ChatGPT-4o-latest --- src/modules/llms/server/openai/models.data.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 0061c1e93..1a523fcf4 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -51,6 +51,16 @@ const _knownOpenAIChatModels: ManualMappings = [ benchmark: { cbaElo: 1286 }, hidden: true, }, + { + idPrefix: 'chatgpt-4o-latest', + label: 'ChatGPT-4o Latest', + description: 'Intended for research and evaluation. Dynamic model continuously updated to the current version of GPT-4o in ChatGPT.', + contextWindow: 128000, + maxCompletionTokens: 16384, + trainingDataCutoff: 'Oct 2023', + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision, LLM_IF_OAI_Fn, LLM_IF_OAI_Json], + pricing: { chatIn: 5, chatOut: 15 }, + }, // GPT-4o mini { From 30c32835729eda2a1d19ff540d0d3bce2a7fad4a Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:53:42 -0700 Subject: [PATCH 06/12] OpenAI: add o1 --- src/modules/llms/server/openai/models.data.ts | 55 ++++++++++++++++++- 1 file changed, 53 insertions(+), 2 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 1a523fcf4..34dc1cba4 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -88,8 +88,59 @@ const _knownOpenAIChatModels: ManualMappings = [ pricing: { chatIn: 0.15, chatOut: 0.60 }, }, - // o1-preview and o1-mini (beta) - // ... + // o1-preview + { + idPrefix: 'o1-preview', + label: 'o1-preview', + description: 'Points to the most recent snapshot of the o1 model: o1-preview-2024-09-12', + symLink: 'o1-preview-2024-09-12', + hidden: true, + // copied from symlinked + contextWindow: 128000, + maxCompletionTokens: 32768, + trainingDataCutoff: 'Oct 2023', + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision], + pricing: { chatIn: 15, chatOut: 60 }, + isPreview: true, + }, + { + idPrefix: 'o1-preview-2024-09-12', + label: 'o1-preview (2024-09-12)', + description: 'New reasoning model for complex tasks that require broad general knowledge.', + contextWindow: 128000, + maxCompletionTokens: 32768, + trainingDataCutoff: 'Oct 2023', + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision], + pricing: { chatIn: 15, chatOut: 60 }, + isPreview: true, + }, + + // o1-mini + { + idPrefix: 'o1-mini', + label: 'o1-mini', + description: 'Points to the most recent o1-mini snapshot: o1-mini-2024-09-12', + symLink: 'o1-mini-2024-09-12', + hidden: true, + // copied from symlinked + contextWindow: 128000, + maxCompletionTokens: 65536, + trainingDataCutoff: 'Oct 2023', + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision], + pricing: { chatIn: 3, chatOut: 12 }, + isPreview: true, + }, + { + idPrefix: 'o1-mini-2024-09-12', + label: 'o1-mini (2024-09-12)', + description: 'Fast, cost-efficient reasoning model tailored to coding, math, and science use cases.', + contextWindow: 128000, + maxCompletionTokens: 65536, + trainingDataCutoff: 'Oct 2023', + interfaces: [LLM_IF_OAI_Chat, LLM_IF_OAI_Vision], + pricing: { chatIn: 3, chatOut: 12 }, + isPreview: true, + }, // GPT4 Turbo with Vision -> 2024-04-09 { From 6a904c9f3767e1f223186830ebe931e53758ecf6 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:59:32 -0700 Subject: [PATCH 07/12] OpenAI: 3.5 non legacy --- src/modules/llms/server/openai/models.data.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 34dc1cba4..2966c3c80 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -267,7 +267,6 @@ const _knownOpenAIChatModels: ManualMappings = [ pricing: { chatIn: 30, chatOut: 60 }, benchmark: { cbaElo: 1186 }, hidden: true, - isLegacy: true, }, { idPrefix: 'gpt-4', From de25e5822d44649f0e8bd2354f9bae0f72dcc1be Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 10:59:40 -0700 Subject: [PATCH 08/12] OpenAI: o1 relabel --- src/modules/llms/server/openai/models.data.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 2966c3c80..18132430e 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -91,7 +91,7 @@ const _knownOpenAIChatModels: ManualMappings = [ // o1-preview { idPrefix: 'o1-preview', - label: 'o1-preview', + label: 'o1 Preview', description: 'Points to the most recent snapshot of the o1 model: o1-preview-2024-09-12', symLink: 'o1-preview-2024-09-12', hidden: true, @@ -105,7 +105,7 @@ const _knownOpenAIChatModels: ManualMappings = [ }, { idPrefix: 'o1-preview-2024-09-12', - label: 'o1-preview (2024-09-12)', + label: 'o1 Preview (2024-09-12)', description: 'New reasoning model for complex tasks that require broad general knowledge.', contextWindow: 128000, maxCompletionTokens: 32768, @@ -118,7 +118,7 @@ const _knownOpenAIChatModels: ManualMappings = [ // o1-mini { idPrefix: 'o1-mini', - label: 'o1-mini', + label: 'o1 Mini', description: 'Points to the most recent o1-mini snapshot: o1-mini-2024-09-12', symLink: 'o1-mini-2024-09-12', hidden: true, @@ -132,7 +132,7 @@ const _knownOpenAIChatModels: ManualMappings = [ }, { idPrefix: 'o1-mini-2024-09-12', - label: 'o1-mini (2024-09-12)', + label: 'o1 Mini (2024-09-12)', description: 'Fast, cost-efficient reasoning model tailored to coding, math, and science use cases.', contextWindow: 128000, maxCompletionTokens: 65536, From 1d3321b336cab3010d98b491bdebeca7dec9d2bd Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 11:02:33 -0700 Subject: [PATCH 09/12] OpenAI: o1 support label --- src/modules/llms/server/openai/models.data.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/modules/llms/server/openai/models.data.ts b/src/modules/llms/server/openai/models.data.ts index 18132430e..fa878d996 100644 --- a/src/modules/llms/server/openai/models.data.ts +++ b/src/modules/llms/server/openai/models.data.ts @@ -92,7 +92,7 @@ const _knownOpenAIChatModels: ManualMappings = [ { idPrefix: 'o1-preview', label: 'o1 Preview', - description: 'Points to the most recent snapshot of the o1 model: o1-preview-2024-09-12', + description: 'Supported in Big-AGI 2. Points to the most recent snapshot of the o1 model: o1-preview-2024-09-12', symLink: 'o1-preview-2024-09-12', hidden: true, // copied from symlinked @@ -104,9 +104,10 @@ const _knownOpenAIChatModels: ManualMappings = [ isPreview: true, }, { + hidden: true, // we can't support it in Big-AGI 1 idPrefix: 'o1-preview-2024-09-12', label: 'o1 Preview (2024-09-12)', - description: 'New reasoning model for complex tasks that require broad general knowledge.', + description: 'Supported in Big-AGI 2. New reasoning model for complex tasks that require broad general knowledge.', contextWindow: 128000, maxCompletionTokens: 32768, trainingDataCutoff: 'Oct 2023', @@ -119,7 +120,7 @@ const _knownOpenAIChatModels: ManualMappings = [ { idPrefix: 'o1-mini', label: 'o1 Mini', - description: 'Points to the most recent o1-mini snapshot: o1-mini-2024-09-12', + description: 'Supported in Big-AGI 2. Points to the most recent o1-mini snapshot: o1-mini-2024-09-12', symLink: 'o1-mini-2024-09-12', hidden: true, // copied from symlinked @@ -131,9 +132,10 @@ const _knownOpenAIChatModels: ManualMappings = [ isPreview: true, }, { + hidden: true, // we can't support it in Big-AGI 1 idPrefix: 'o1-mini-2024-09-12', label: 'o1 Mini (2024-09-12)', - description: 'Fast, cost-efficient reasoning model tailored to coding, math, and science use cases.', + description: 'Supported in Big-AGI 2. Fast, cost-efficient reasoning model tailored to coding, math, and science use cases.', contextWindow: 128000, maxCompletionTokens: 65536, trainingDataCutoff: 'Oct 2023', From 574c2cf0e3d4c55690ff1f4b8f1b1b3c16017a6b Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 13:49:11 -0700 Subject: [PATCH 10/12] Call out to Big-AGI 2 --- README.md | 8 ++++--- src/apps/news/AppNews.tsx | 8 +++++++ src/apps/news/beam.data.tsx | 1 - src/apps/news/bigAgi2.data.tsx | 40 ++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 src/apps/news/bigAgi2.data.tsx diff --git a/README.md b/README.md index 387049d3a..d597f8ce0 100644 --- a/README.md +++ b/README.md @@ -11,13 +11,15 @@ Stay ahead of the curve with big-AGI. πŸš€ Pros & Devs love big-AGI. πŸ€– [![Official Website](https://img.shields.io/badge/BIG--AGI.com-%23096bde?style=for-the-badge&logo=vercel&label=launch)](https://big-agi.com) +> πŸš€ Big-AGI 2 is launching Q4 2024. Be the first to experience it before the public release. +> +> πŸ‘‰ [Apply for Early Access](https://y2rjg0zillz.typeform.com/to/FDggwwZv) + Or fork & run on Vercel [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fenricoros%2Fbig-AGI&env=OPENAI_API_KEY&envDescription=Backend%20API%20keys%2C%20optional%20and%20may%20be%20overridden%20by%20the%20UI.&envLink=https%3A%2F%2Fgithub.com%2Fenricoros%2Fbig-AGI%2Fblob%2Fmain%2Fdocs%2Fenvironment-variables.md&project-name=big-AGI) -## πŸ‘‰ [roadmap](https://github.com/users/enricoros/projects/4/views/2) πŸ‘‰ [installation](docs/installation.md) πŸ‘‰ [documentation](docs/README.md) - -> Note: bigger better features (incl. Beam-2) are being cooked outside of `main`. +### Quick links: πŸ‘‰ [roadmap](https://github.com/users/enricoros/projects/4/views/2) πŸ‘‰ [installation](docs/installation.md) πŸ‘‰ [documentation](docs/README.md) [//]: # (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) diff --git a/src/apps/news/AppNews.tsx b/src/apps/news/AppNews.tsx index 4e925f567..f23ec263c 100644 --- a/src/apps/news/AppNews.tsx +++ b/src/apps/news/AppNews.tsx @@ -14,6 +14,7 @@ import { capitalizeFirstLetter } from '~/common/util/textUtils'; import { NewsItems } from './news.data'; import { beamNewsCallout } from './beam.data'; +import { bigAgi2NewsCallout } from './bigAgi2.data'; // number of news items to show by default, before the expander @@ -110,6 +111,13 @@ export function AppNews() { const addPadding = false; //!firstCard; // || showExpander; return + {/* Inject the Big-AGI 2.0 item here*/} + {idx === 0 && ( + + {bigAgi2NewsCallout} + + )} + {/* Inject the Beam item here*/} {idx === 2 && ( diff --git a/src/apps/news/beam.data.tsx b/src/apps/news/beam.data.tsx index 99f08c61b..8893f76b4 100644 --- a/src/apps/news/beam.data.tsx +++ b/src/apps/news/beam.data.tsx @@ -2,7 +2,6 @@ import * as React from 'react'; import { Button, Card, CardContent, Grid, Typography } from '@mui/joy'; import LaunchIcon from '@mui/icons-material/Launch'; -import ThumbUpRoundedIcon from '@mui/icons-material/ThumbUpRounded'; import { Link } from '~/common/components/Link'; diff --git a/src/apps/news/bigAgi2.data.tsx b/src/apps/news/bigAgi2.data.tsx new file mode 100644 index 000000000..2dd22eda0 --- /dev/null +++ b/src/apps/news/bigAgi2.data.tsx @@ -0,0 +1,40 @@ +import * as React from 'react'; + +import { Button, Card, CardContent, Grid, Typography } from '@mui/joy'; +import AccessTimeIcon from '@mui/icons-material/AccessTime'; +import LaunchIcon from '@mui/icons-material/Launch'; + +import { Link } from '~/common/components/Link'; + + +const bigAgi2SurveyUrl = 'https://y2rjg0zillz.typeform.com/to/FDggwwZv'; + +export const bigAgi2NewsCallout = + + + + Big-AGI 2.0 - In Development + + + We're building the next version of Big-AGI with your needs in mind. New features, better performance, enhanced AI interactions. Help us shape it. + + + + + + + + + + + ; \ No newline at end of file From e64a5e59efcd1752dfd12a78e16c852ed33e643c Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 13:50:00 -0700 Subject: [PATCH 11/12] 1.16.8 Release --- README.md | 5 ++--- docs/changelog.md | 3 ++- src/apps/news/news.data.tsx | 6 ++++-- src/apps/news/news.version.tsx | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d597f8ce0..7c0a10cb8 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,9 @@ Or fork & run on Vercel ### Quick links: πŸ‘‰ [roadmap](https://github.com/users/enricoros/projects/4/views/2) πŸ‘‰ [installation](docs/installation.md) πŸ‘‰ [documentation](docs/README.md) -[//]: # (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.7 Β· Aug 7, 2024 (patch releases) +### What's New in 1.16.1...1.16.8 Β· Sep 13, 2024 (patch releases) +- 1.16.8: OpenAI ChatGPT-4o Latest (o1-preview and o1-mini are supported in Big-AGI 2) - 1.16.7: OpenAI support for GPT-4o 2024-08-06 - 1.16.6: Groq support for Llama 3.1 models - 1.16.5: GPT-4o Mini support diff --git a/docs/changelog.md b/docs/changelog.md index 40723688b..28c4b1f9a 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.7 Β· Aug 7, 2024 (patch releases) +### What's New in 1.16.1...1.16.8 Β· Sep 13, 2024 (patch releases) +- 1.16.8: OpenAI ChatGPT-4o Latest (o1-preview and o1-mini are supported in Big-AGI 2) - 1.16.7: OpenAI support for GPT-4o 2024-08-06 - 1.16.6: Groq support for Llama 3.1 models - 1.16.5: GPT-4o Mini support diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index ff3e0b957..62f0932ed 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.7', + versionCode: '1.16.8', versionName: 'Crystal Clear', versionDate: new Date('2024-06-07T05:00:00Z'), // versionDate: new Date('2024-05-13T19:00:00Z'), @@ -83,7 +83,9 @@ export const NewsItems: NewsItem[] = [ { text: <>1.16.4: 8192 tokens support for Claude 3.5 Sonnet }, { text: <>1.16.5: OpenAI GPT-4o Mini support }, { text: <>1.16.6: Groq Llama 3.1 support }, - { text: <>1.16.7: Gpt-4o 2024-08-06 }, + { text: <>1.16.7: Gpt-4o 2024-08-06 }, + { text: <>1.16.8: ChatGPT-4o latest }, + { text: <>OpenAI o1 and newer models require Big-AGI 2. Sign up here }, ], }, { diff --git a/src/apps/news/news.version.tsx b/src/apps/news/news.version.tsx index d2d3ad3aa..7b03ed020 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 1.16.7 +export const incrementalNewsVersion: number = 16.1; // not notifying for 1.16.8 interface NewsState { From 39c5c7c9bac977205d42f50cf0a52409af4a156b Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Fri, 13 Sep 2024 14:06:12 -0700 Subject: [PATCH 12/12] Call out to Big-AGI 2 --- README.md | 2 +- src/apps/news/bigAgi2.data.tsx | 2 +- src/apps/news/news.data.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7c0a10cb8..19b37be6a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Stay ahead of the curve with big-AGI. πŸš€ Pros & Devs love big-AGI. πŸ€– > πŸš€ Big-AGI 2 is launching Q4 2024. Be the first to experience it before the public release. > -> πŸ‘‰ [Apply for Early Access](https://y2rjg0zillz.typeform.com/to/FDggwwZv) +> πŸ‘‰ [Apply for Early Access](https://y2rjg0zillz.typeform.com/to/FDggwwZv?utm_source=github&utm_medium=readme&utm_campaign=ba20) Or fork & run on Vercel diff --git a/src/apps/news/bigAgi2.data.tsx b/src/apps/news/bigAgi2.data.tsx index 2dd22eda0..b3e162078 100644 --- a/src/apps/news/bigAgi2.data.tsx +++ b/src/apps/news/bigAgi2.data.tsx @@ -7,7 +7,7 @@ import LaunchIcon from '@mui/icons-material/Launch'; import { Link } from '~/common/components/Link'; -const bigAgi2SurveyUrl = 'https://y2rjg0zillz.typeform.com/to/FDggwwZv'; +const bigAgi2SurveyUrl = 'https://y2rjg0zillz.typeform.com/to/FDggwwZv?utm_source=github&utm_medium=callout&utm_campaign=ba20'; export const bigAgi2NewsCallout = diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index 62f0932ed..aac681c87 100644 --- a/src/apps/news/news.data.tsx +++ b/src/apps/news/news.data.tsx @@ -85,7 +85,7 @@ export const NewsItems: NewsItem[] = [ { text: <>1.16.6: Groq Llama 3.1 support }, { text: <>1.16.7: Gpt-4o 2024-08-06 }, { text: <>1.16.8: ChatGPT-4o latest }, - { text: <>OpenAI o1 and newer models require Big-AGI 2. Sign up here }, + { text: <>OpenAI o1 and newer models require Big-AGI 2. Sign up here }, ], }, {