-
- Downloads
Update default Metabot model (#38491)
* Update default Metabot model The default GPT-based Metabot model has been `"gpt-4"`. This model is no longer state of the art, has a limit of 8,192 tokens, and is priced at input: $0.03/ktoken and output: $0.06/ktoken. `"gpt-4-turbo-preview"`, which points internally to `"gpt-4-0125-preview"` is the current state of the art, has a limit of 128,000 tokens, and is priced at input: $0.01/ktoken and output: $0.03/ktoken. This should solve any issues of reasonable cases of token limit failures (e.g. [Metabot 2.0 failing when context length exceeded](https://github.com/metabase/metabase/issues/29932)) without needing to do any extra handling on the backend. For more info on the models, token limits, and pricing, see: - [OpenAI model docs](https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo) - [OpenAI pricing](https://openai.com/pricing) * whitespace * Removing irrelevant settings test
Please register or sign in to comment