Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/landing/LanguageSelector.astro
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func main() {
{
name: "Python",
id: "python",
status: "(Preview)",
status: "(Beta)",
active: false,
icon: "python",
href: "/docs/python/get-started/",
Expand Down
4 changes: 2 additions & 2 deletions src/components/sidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const currentLang = pathLangMatch?.[1] || Astro.url.searchParams.get('lang') ||
const languageMeta: Record<string, { name: string; preview?: boolean }> = {
js: { name: 'TypeScript' },
go: { name: 'Go' },
python: { name: 'Python', preview: true },
python: { name: 'Python', preview: false },
dart: { name: 'Dart', preview: true },
};
const iconComponents: Record<string, any> = {
Expand Down Expand Up @@ -186,7 +186,7 @@ const docsLanguageAgnosticByPath = Object.fromEntries(
const LANGUAGE_META: Record<string, { name: string; preview?: boolean }> = {
js: { name: 'TypeScript' },
go: { name: 'Go' },
python: { name: 'Python', preview: true },
python: { name: 'Python', preview: false },
dart: { name: 'Dart', preview: true },
};

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/docs/api-stability.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ so bug fixes and new features happen in patch releases and breaking changes in m

<Lang lang="python">

Genkit follows [semantic versioning](https://semver.org/). Genkit Python is currently in preview (`0.*`),
Genkit follows [semantic versioning](https://semver.org/). Genkit Python is currently in beta (`0.*`),
so bug fixes and new features happen in patch releases and breaking changes in minor releases.

</Lang>
4 changes: 2 additions & 2 deletions src/content/docs/docs/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```

:::note[Preview release]
The Genkit libraries for Python are currently in **preview**. You might see API and functional changes as development progresses. We recommend using it only for prototyping and exploration.
:::note[Beta release]
The Genkit libraries for Python are currently in **beta**. You might see API and functional changes as development progresses. We recommend using it only for prototyping and exploration.
Comment thread
vinitaporlekar marked this conversation as resolved.
:::

</Lang>
Expand Down