From af138fe5a461873b386e0992861b2b93a72ecbd7 Mon Sep 17 00:00:00 2001 From: Alejandro Krumkamp Date: Tue, 29 Oct 2024 14:56:29 +0000 Subject: [PATCH] PCX-14416 adding crosslinking between RAD and tutorial on BQ + Workers AI (#17823) * PCX-14416 - Adding link to tutorial in RAD about Bigquery and Workers AI * PCX-13971 - Adding link to reference architecture to BQ and Workers AI tutorial * PCX-13971 - Fixing wording in tutorial on BQ + Workers AI --- .../reference-architecture/diagrams/ai/bigquery-workers-ai.mdx | 1 + .../workers-ai/tutorials/using-bigquery-with-workers-ai.mdx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/docs/reference-architecture/diagrams/ai/bigquery-workers-ai.mdx b/src/content/docs/reference-architecture/diagrams/ai/bigquery-workers-ai.mdx index 8ab18039f4210e..4a78d182b7ddd9 100644 --- a/src/content/docs/reference-architecture/diagrams/ai/bigquery-workers-ai.mdx +++ b/src/content/docs/reference-architecture/diagrams/ai/bigquery-workers-ai.mdx @@ -53,6 +53,7 @@ For periodic or longer workflows, you may opt for a batch approach. This diagram ## Related resources +- [Tutorial: Using BigQuery with Workers AI](/workers-ai/tutorials/using-bigquery-with-workers-ai/) - [Workers AI: Get Started](/workers-ai/get-started/workers-wrangler/) - [Workers: Secrets](/workers/configuration/secrets/) - [Workers: Cron Triggers](/workers/runtime-apis/handlers/scheduled/) diff --git a/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx b/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx index c6125ee5608094..a034696b4b6def 100644 --- a/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx +++ b/src/content/docs/workers-ai/tutorials/using-bigquery-with-workers-ai.mdx @@ -677,7 +677,7 @@ Once you obtained the results, you formatted them to later be passed to generati ## Next Steps -If, instead of displaying the results of ingesting the data to the AI model in a browser, your workflow requires fetching and store data (for example in [R2](/r2/) or [D1](/d1/)) on regular intervals, you may want to consider adding a [scheduled handler](/workers/runtime-apis/handlers/scheduled/) for this Worker. It allows triggering the Worker with a predefined cadence via a [Cron Trigger](/workers/configuration/cron-triggers/). +If, instead of displaying the results of ingesting the data to the AI model in a browser, your workflow requires fetching and store data (for example in [R2](/r2/) or [D1](/d1/)) on regular intervals, you may want to consider adding a [scheduled handler](/workers/runtime-apis/handlers/scheduled/) for this Worker. It allows triggering the Worker with a predefined cadence via a [Cron Trigger](/workers/configuration/cron-triggers/). Consider reviewing the Reference Architecture Diagrams on [Ingesting BigQuery Data into Workers AI](/reference-architecture/diagrams/ai/bigquery-workers-ai/). A use case to ingest data from other sources, like you did in this tutorial, is to create a RAG system. If this sounds relevant to you, please check out the tutorial [Build a Retrieval Augmented Generation (RAG) AI](/workers-ai/tutorials/build-a-retrieval-augmented-generation-ai/).