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 sites/docs/src/content/ai/create-with-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ resources:
[Firebase AI Logic Showcase]: {{site.github}}/flutter/demos/tree/main/firebase_ai_logic_showcase
[firebase-ai-logic-docs]: {{site.firebase}}/docs/ai-logic/get-started
[Genkit Dart]: https://genkit.dev
[genkit-dart-quickstart]: https://genkit.dev/docs/dart/get-started
[genkit-dart-quickstart]: https://genkit.dev/docs/dart/overview
Comment thread
abdallahshaban557 marked this conversation as resolved.
[Flutter AI Toolkit]: /ai/ai-toolkit

## AI development tools
Expand Down
2 changes: 1 addition & 1 deletion sites/docs/src/content/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ This file provides a curated list of resources to help Large Language Models und
- [Firebase AI Logic package](https://pub.dev/packages/firebase_ai): The pub.dev package for Firebase AI Logic.
- [GenUI SDK for Flutter](https://docs.flutter.dev/ai/genui): Learn how to use the GenUI SDK for Flutter to build more interactive experiences in your apps.
- [Genkit Dart](https://genkit.dev): An open-source, model-agnostic framework for building AI-powered apps in Dart and Flutter with type-safe schemas, flows, and built-in observability.
- [Genkit Dart quickstart](https://genkit.dev/docs/dart/get-started): Get started building AI-powered Dart and Flutter apps with Genkit.
- [Genkit Dart quickstart](https://genkit.dev/docs/dart/overview): Get started building AI-powered Dart and Flutter apps with Genkit.

## Testing & debugging

Expand Down
17 changes: 5 additions & 12 deletions sites/www/lib/src/pages/ai_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ class AiPage extends StatelessComponent {
div(classes: 'alternating-item', [
div(classes: 'media', [
img(
src: context.asset(
'images/build-with-ai/vertex-tab.png',
),
src: context.asset('images/build-with-ai/vertex-tab.png'),
alt: 'Vertex AI Logo',
),
]),
Expand All @@ -117,9 +115,7 @@ class AiPage extends StatelessComponent {
div(classes: 'media', [
img(
classes: 'genkit-logo',
src: context.asset(
'images/genkit.jpg',
),
src: context.asset('images/genkit.jpg'),
alt: 'Genkit Logo',
),
]),
Expand All @@ -132,7 +128,7 @@ class AiPage extends StatelessComponent {
]),
a(
classes: 'btn',
href: 'https://genkit.dev/docs/dart/get-started/',
href: 'https://genkit.dev/docs/dart/overview',
target: Target.blank,
[.text('Get started')],
),
Expand Down Expand Up @@ -216,7 +212,7 @@ class AiPage extends StatelessComponent {
title: 'Build AI-powered apps with Genkit Dart',
description:
'Learn how to build AI-powered applications in Dart and Flutter using the Genkit framework.',
url: 'https://genkit.dev/docs/dart/get-started/',
url: 'https://genkit.dev/docs/dart/overview',
icon: context.asset(
'/development/images/icons/get-started-in-docs.svg',
),
Expand Down Expand Up @@ -251,10 +247,7 @@ class AiPage extends StatelessComponent {
a(href: item.href, target: Target.blank, [
div([
div(classes: 'image-container', [
img(
alt: item.title,
src: context.asset(item.image),
),
img(alt: item.title, src: context.asset(item.image)),
]),
div(classes: 'text', [
h3([.text(item.title)]),
Expand Down
Loading