Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LLM langchain demo #160

Merged
merged 7 commits into from
Nov 20, 2023
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/notebooks_to_exclude.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
# Some notebooks are deliberate scraps of code
# and not designed to run end-to-end
./R-client.ipynb
./R-weather.ipynb

# Ignore any temporary notebook caches etc
.ipynb_checkpoints
Expand Down
46 changes: 23 additions & 23 deletions 00_notebooks/00_index.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,33 +46,10 @@
" * [What happens if you use Iceberg without the lakeFS support](./iceberg-lakefs-default.ipynb)\n",
"* **Using R with lakeFS**\n",
" * [Basic usage](./R.ipynb)\n",
" * [Weather data](./R-weather.ipynb)\n",
" * [NYC Film permits example](./R-nyc.ipynb)\n",
" * [Rough notes around R client](./R-client.ipynb)"
]
},
{
"cell_type": "markdown",
"id": "93ba5f85-ec96-4dc6-bc5c-f9313a658112",
"metadata": {},
"source": [
"### Write-Audit-Publish pattern\n",
"\n",
"See https://lakefs.io/blog/data-engineering-patterns-write-audit-publish/"
]
},
{
"cell_type": "markdown",
"id": "305a0733-ee99-4d4f-8dcf-94b9e9dd9fd5",
"metadata": {},
"source": [
"* [**Write-Audit-Publish / lakeFS**](write-audit-publish/wap-lakefs.ipynb) <br/> _With support for heterogeneous data formats and cross-collection consistency_\n",
"* [**Write-Audit-Publish / Apache Iceberg**](write-audit-publish/wap-iceberg.ipynb)\n",
"* [**Write-Audit-Publish / Project Nessie**](write-audit-publish/wap-nessie.ipynb)\n",
"* [**Write-Audit-Publish / Delta Lake**](write-audit-publish/wap-delta.ipynb)\n",
"* [**Write-Audit-Publish / Apache Hudi**](write-audit-publish/wap-hudi.ipynb)\n"
]
},
{
"cell_type": "markdown",
"id": "c0de105e-2071-438c-b9fa-5ffe664d47ac",
Expand Down Expand Up @@ -102,13 +79,36 @@
"* [AWS **Glue and Trino**](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/aws-glue-trino/)\n",
"* [lakeFS + **Dagster**](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/dagster-integration/)\n",
"* [lakeFS + **Prefect**](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/prefect-integration/)\n",
"* [Reproducibility and Data Version Control for **LangChain** and **LLM/OpenAI** Models](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/llm-openai-langchain-integration/)<br/>_See also the [accompanying blog](https://lakefs.io/blog/lakefs-langchain-loader/)_\n",
"* [Image Segmentation Demo: *ML Data Version Control and Reproducibility at Scale*](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/image-segmentation/)\n",
"* [*Labelbox* integration](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/labelbox-integration/)\n",
"* [*Kafka* integration](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/kafka/)\n",
"* [*Flink* integration](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/flink/)\n",
"* [How to **migrate or clone** a repo](https://github.com/treeverse/lakeFS-samples/blob/main/01_standalone_examples/migrate-or-clone-repo/)"
]
},
{
"cell_type": "markdown",
"id": "93ba5f85-ec96-4dc6-bc5c-f9313a658112",
"metadata": {},
"source": [
"### Write-Audit-Publish pattern\n",
"\n",
"See https://lakefs.io/blog/data-engineering-patterns-write-audit-publish/"
]
},
{
"cell_type": "markdown",
"id": "305a0733-ee99-4d4f-8dcf-94b9e9dd9fd5",
"metadata": {},
"source": [
"* [**Write-Audit-Publish / lakeFS**](write-audit-publish/wap-lakefs.ipynb) <br/> _With support for heterogeneous data formats and cross-collection consistency_\n",
"* [**Write-Audit-Publish / Apache Iceberg**](write-audit-publish/wap-iceberg.ipynb)\n",
"* [**Write-Audit-Publish / Project Nessie**](write-audit-publish/wap-nessie.ipynb)\n",
"* [**Write-Audit-Publish / Delta Lake**](write-audit-publish/wap-delta.ipynb)\n",
"* [**Write-Audit-Publish / Apache Hudi**](write-audit-publish/wap-hudi.ipynb)\n"
]
},
{
"cell_type": "markdown",
"id": "d1cb588f",
Expand Down
Loading