Skip to content

0.3.9

Compare
Choose a tag to compare
@akshayka akshayka released this 04 Apr 04:47
· 542 commits to main since this release
6da85df

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