github marimo-team/marimo 0.3.9

latest releases: 0.15.3, 0.15.2, 0.15.1...
17 months ago

What's Changed

New Features!

  • 🤖 AI Suggestions: Bring your own OpenAI API key to unlock AI-powered suggestions!
image

Get started by updating your ~/.marimo.toml config file:

[ai.open_ai]
# Get your API key from https://platform.openai.com/account/api-keys
api_key = "sk-..."
# Choose a model, we recommend "gpt-3.5-turbo"
model = "gpt-3.5-turbo"
# Change the base_url if you are using a different OpenAI-compatible API
base_url = "https://api.openai.com"

Read the docs to learn more.

Lazy evaluation/rendering of components The new library function mo.lazy() lets you defer the computation and rendering of components, especially useful if you have expensive components that are hidden by default (e.g., in a tab or accordion).

All changes

Full Changelog: 0.3.8...0.3.9

Don't miss a new marimo release

NewReleases is sending notifications on new releases.