Skip to content

Commit

Permalink
fix regression
Browse files Browse the repository at this point in the history
Signed-off-by: nikki everett <[email protected]>
  • Loading branch information
nikki everett committed Sep 27, 2024
1 parent 3bef359 commit f550c0e
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/integrations/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Flytekit functionality. These plugins can be anything and for comparison can be
- `wandb`: Machine learning platform to build better models faster.
* - {doc}`NIM </auto_examples/nim_plugin/index>`
- Serve optimized model containers with NIM.
* - {doc}`Ollama <auto_examples/ollama_plugin/index>`
* - {doc}`Ollama </auto_examples/ollama_plugin/index>`
- Serve fine-tuned LLMs with Ollama in a Flyte workflow.
```

Expand Down Expand Up @@ -228,6 +228,7 @@ constructs natively within other orchestration tools.
/auto_examples/k8s_spark_plugin/index
/auto_examples/sql_plugin/index
/auto_examples/kftensorflow_plugin/index
/auto_examples/wandb_plugin/index
/auto_examples/whylogs_plugin/index
Deprecated integrations <deprecated_integrations/index>
```
7 changes: 7 additions & 0 deletions examples/bigquery_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
**Note:** This example code uses the legacy implementation of the BigQuery integration. We recommend using the [BigQuery agent](https://docs.flyte.org/en/latest/flytesnacks/examples/bigquery_agent/index.html) instead.

This directory contains example code for the deprecated BigQuery plugin. For documentation on installing and using the plugin, see the [BigQuery plugin documentation](https://docs.flyte.org/en/latest/deprecated_integrations/bigquery_plugin/index.html)

```{toctree}
:maxdepth: -1
:hidden:
bigquery_plugin_example
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# %% [markdown]
# (bigquery_plugin_example)=
# # BigQuery plugin example
#
# %%

try:
from typing import Annotated
except ImportError:
Expand Down
7 changes: 7 additions & 0 deletions examples/databricks_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
**Note:** This example code uses a legacy implementation of the Databricks integration. We recommend using the [Databricks agent](https://docs.flyte.org/en/latest/flytesnacks/examples/databricks_agent/index.html) instead.

This directory contains example code for the deprecated Databricks plugin. For documentation on installing and using the plugin, see the [Databricks plugin documentation](https://docs.flyte.org/en/latest/deprecated_integrations/databricks_plugin/index.html)

```{toctree}
:maxdepth: -1
:hidden:
databricks_plugin_example
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# %% [markdown]
# (spark_on_databricks_plugin)=
# # Databricks plugin example
#
# %%

import datetime
import random
from operator import add
Expand Down
7 changes: 7 additions & 0 deletions examples/snowflake_plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**Note:** This example code uses a legacy implementation of the Snowflake integration. We recommend using the [Snowflake agent](https://docs.flyte.org/en/latest/flytesnacks/examples/databricks_agent/index.html) instead.

This directory contains example code for the deprecated Snowflake plugin. For documentation on installing and using the plugin, see the [Snowflake plugin documentation](https://docs.flyte.org/en/latest/deprecated_integrations/snowflake_plugin/index.html)

```{toctree}
:maxdepth: -1
:hidden:
snowflake_plugin_example
```
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# %% [markdown]
# # Snowflake plugin example
#
# %%

from flytekit import kwtypes, workflow
from flytekitplugins.snowflake import SnowflakeConfig, SnowflakeTask

Expand Down

0 comments on commit f550c0e

Please sign in to comment.