From 2358df10c67308cd3af0999194c9edb2302dcd26 Mon Sep 17 00:00:00 2001 From: Logan Date: Mon, 2 Feb 2026 11:42:47 -0600 Subject: [PATCH] add notice (don't merge until ready) (#1065) --- .changeset/slick-peas-rush.md | 6 ++++++ .pre-commit-config.yaml | 2 +- README.md | 10 ++++++++++ examples/README.md | 10 ++++++++++ examples/batch/parse/batch_parse_directory.ipynb | 8 ++++++++ examples/extract/asset_manager_fund_analysis.ipynb | 8 ++++++++ examples/extract/automotive_sector_analysis.ipynb | 8 ++++++++ examples/extract/extract_data_with_citations.ipynb | 7 +++++++ examples/extract/insider_buy_sell.ipynb | 7 +++++++ examples/extract/lm317_structured_extraction.ipynb | 8 ++++++++ examples/extract/resume_screening.ipynb | 7 +++++++ examples/extract/sec_10k_filing.ipynb | 8 ++++++++ examples/extract/solar_panel_e2e_comparison.ipynb | 8 ++++++++ examples/extract/tabular_extraction.ipynb | 8 ++++++++ examples/index/getting_started.ipynb | 7 +++++++ examples/misc/parse_classify_extract_workflow.ipynb | 7 +++++++ .../advanced_rag/dynamic_section_retrieval.ipynb | 8 ++++++++ examples/parse/agents/demo_simple_openai_agent.ipynb | 7 +++++++ examples/parse/batch_parse_folder.py | 5 +++++ examples/parse/caltrain/caltrain_text_mode.ipynb | 8 ++++++++ examples/parse/demo_advanced.ipynb | 7 +++++++ examples/parse/demo_api.ipynb | 7 +++++++ examples/parse/demo_basic.ipynb | 7 +++++++ examples/parse/demo_excel.ipynb | 7 +++++++ examples/parse/demo_get_charts.ipynb | 8 ++++++++ examples/parse/demo_insurance.ipynb | 7 +++++++ examples/parse/demo_json.ipynb | 8 ++++++++ examples/parse/demo_json_tour.ipynb | 8 ++++++++ examples/parse/demo_languages.ipynb | 8 ++++++++ examples/parse/demo_mongodb.ipynb | 7 +++++++ examples/parse/demo_starter_multimodal.ipynb | 8 ++++++++ .../parse/demo_starter_parse_selected_pages.ipynb | 7 +++++++ examples/parse/demo_table_extraction.ipynb | 7 +++++++ examples/parse/excel/dcf_rag.ipynb | 8 ++++++++ examples/parse/excel/o1_excel_rag.ipynb | 7 +++++++ examples/parse/knowledge_graphs/kg_agent.ipynb | 8 ++++++++ examples/parse/multimodal/claude_parse.ipynb | 8 ++++++++ examples/parse/multimodal/gemini2_flash.ipynb | 8 ++++++++ examples/parse/multimodal/gpt4o_mini.ipynb | 8 ++++++++ examples/parse/multimodal/insurance_rag.ipynb | 7 +++++++ examples/parse/multimodal/legal_rag.ipynb | 7 +++++++ .../multimodal_contextual_retrieval_rag.ipynb | 8 ++++++++ .../parse/multimodal/multimodal_rag_slide_deck.ipynb | 8 ++++++++ .../multimodal/multimodal_report_generation.ipynb | 8 ++++++++ .../multimodal_report_generation_agent.ipynb | 8 ++++++++ examples/parse/multimodal/product_manual_rag.ipynb | 7 +++++++ examples/parse/other_files/demo_ppt_basic.ipynb | 8 ++++++++ examples/parse/other_files/demo_ppt_financial.ipynb | 7 +++++++ .../parsing_instructions/parsing_instructions.ipynb | 7 +++++++ examples/parse/parsing_modes/demo_auto_mode.ipynb | 7 +++++++ .../demo_layout_agent_mode_visual_citations.ipynb | 7 +++++++ examples/parse/parsing_modes/demo_presets.ipynb | 7 +++++++ .../rfp_response/generate_rfp.ipynb | 8 ++++++++ .../parse/test_tesla_impact_report/test_gpt4o.ipynb | 8 ++++++++ .../coding-agent-analysis/generate_sample_data.py | 5 +++++ .../sheets/coding-agent-analysis/scripts/extract.py | 5 +++++ .../sheets/llama-index-agent/generate_sample_data.py | 5 +++++ .../sheets/llama-index-agent/llama_index_example.py | 5 +++++ examples/sheets/llama-index-agent/scripts/extract.py | 5 +++++ .../document_splitting/document_splitting.ipynb | 7 +++++++ py/llama_cloud_services/__init__.py | 12 ++++++++++++ ts/llama_cloud_services/src/index.ts | 10 ++++++++++ 62 files changed, 455 insertions(+), 1 deletion(-) create mode 100644 .changeset/slick-peas-rush.md diff --git a/.changeset/slick-peas-rush.md b/.changeset/slick-peas-rush.md new file mode 100644 index 0000000..f5c871f --- /dev/null +++ b/.changeset/slick-peas-rush.md @@ -0,0 +1,6 @@ +--- +"llama-cloud-services": patch +"llama-cloud-services-py": patch +--- + +add deprecation notices diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e8d04e0..1caeaef 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,7 +22,7 @@ repos: hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - exclude: ".*uv.lock" + exclude: ".*uv.lock|examples/" - repo: https://github.com/psf/black-pre-commit-mirror rev: 23.10.1 hooks: diff --git a/README.md b/README.md index d7d697c..974b4c0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,16 @@ [![Discord](https://img.shields.io/discord/1059199217496772688)](https://discord.gg/dGcwcsnxhU) # Llama Cloud Services +> **⚠️ DEPRECATION NOTICE** +> +> This repository and its packages are deprecated and will be maintained until **May 1, 2026**. +> +> **Please migrate to the new packages:** +> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py)) +> - **TypeScript**: `npm install @llamaindex/llama-cloud` ([GitHub](https://github.com/run-llama/llama-cloud-ts)) +> +> The new packages provide the same functionality with improved performance, better support, and active development. + This repository contains the code for hand-written SDKs and clients for interacting with LlamaCloud. diff --git a/examples/README.md b/examples/README.md index 00aac10..4f4a24e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -1,4 +1,14 @@ # LlamaCloud Services Examples - Python +> **⚠️ DEPRECATION NOTICE** +> +> This repository and its packages are deprecated and will be maintained until **May 1, 2026**. +> +> **Please migrate to the new packages:** +> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py)) +> - **TypeScript**: `npm install @llamaindex/llama-cloud` ([GitHub](https://github.com/run-llama/llama-cloud-ts)) +> +> The new packages provide the same functionality with improved performance, better support, and active development. + In this folder you will find several python notebooks that contain examples regarding: diff --git a/examples/batch/parse/batch_parse_directory.ipynb b/examples/batch/parse/batch_parse_directory.ipynb index 9015daa..946d4cf 100644 --- a/examples/batch/parse/batch_parse_directory.ipynb +++ b/examples/batch/parse/batch_parse_directory.ipynb @@ -17,6 +17,14 @@ "This is useful when you need to parse many documents at once, as the batch API handles the orchestration and provides progress tracking." ] }, + { + "cell_type": "markdown", + "id": "0c2b5e1a", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "cell-1", diff --git a/examples/extract/asset_manager_fund_analysis.ipynb b/examples/extract/asset_manager_fund_analysis.ipynb index d9ff32d..10de946 100644 --- a/examples/extract/asset_manager_fund_analysis.ipynb +++ b/examples/extract/asset_manager_fund_analysis.ipynb @@ -16,6 +16,14 @@ "![](asset_manager_fund_analysis.png)\n" ] }, + { + "cell_type": "markdown", + "id": "cbafd7ee", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "cda2e5e9-fe9d-42d9-9387-f529d970ff7b", diff --git a/examples/extract/automotive_sector_analysis.ipynb b/examples/extract/automotive_sector_analysis.ipynb index dd94d1b..8d0d67c 100644 --- a/examples/extract/automotive_sector_analysis.ipynb +++ b/examples/extract/automotive_sector_analysis.ipynb @@ -20,6 +20,14 @@ "This workflow is designed for equity research analysts and investment professionals." ] }, + { + "cell_type": "markdown", + "id": "e7979faf", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/extract/extract_data_with_citations.ipynb b/examples/extract/extract_data_with_citations.ipynb index 41665c9..f6aeb85 100644 --- a/examples/extract/extract_data_with_citations.ipynb +++ b/examples/extract/extract_data_with_citations.ipynb @@ -19,6 +19,13 @@ "The example we go through below is also replicable within Llama Cloud as well, where you will also be able to pick between a number of pre-defined schemas, instead of building your own." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/extract/insider_buy_sell.ipynb b/examples/extract/insider_buy_sell.ipynb index 9fb8504..23091e5 100644 --- a/examples/extract/insider_buy_sell.ipynb +++ b/examples/extract/insider_buy_sell.ipynb @@ -15,6 +15,13 @@ "Dow Jones Industrial Average (DJIA) is a stock market index that consists of 30 large companies listed on the New York Stock Exchange and the NASDAQ and is considered a good proxy for the overall US stock market. For this exercise, we will extract the insider transactions for all the companies in the DJIA. Let's first get the list of tickers in the Dow Jones Industrial Average using Wikipedia." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/extract/lm317_structured_extraction.ipynb b/examples/extract/lm317_structured_extraction.ipynb index f525114..ccdb135 100644 --- a/examples/extract/lm317_structured_extraction.ipynb +++ b/examples/extract/lm317_structured_extraction.ipynb @@ -16,6 +16,14 @@ "This approach reduces manual data entry, improves extraction accuracy and standardization, and provides traceability for each technical detail." ] }, + { + "cell_type": "markdown", + "id": "8d1efe6e", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "a3b8c8d5-ff3e-48ce-b0b8-29b6b1f517f8", diff --git a/examples/extract/resume_screening.ipynb b/examples/extract/resume_screening.ipynb index 5b34e60..250eeb3 100644 --- a/examples/extract/resume_screening.ipynb +++ b/examples/extract/resume_screening.ipynb @@ -11,6 +11,13 @@ "Take a look at one of the resumes in the `data/resumes` directory. " ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/extract/sec_10k_filing.ipynb b/examples/extract/sec_10k_filing.ipynb index c05466d..399b3ea 100644 --- a/examples/extract/sec_10k_filing.ipynb +++ b/examples/extract/sec_10k_filing.ipynb @@ -20,6 +20,14 @@ "> **Note:** This principle of what fields generalize across your target documents and what might be optional is an important one to keep in mind when designing your schema. \n" ] }, + { + "cell_type": "markdown", + "id": "355adfd4", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/extract/solar_panel_e2e_comparison.ipynb b/examples/extract/solar_panel_e2e_comparison.ipynb index 5b4b4e1..9d9dcea 100644 --- a/examples/extract/solar_panel_e2e_comparison.ipynb +++ b/examples/extract/solar_panel_e2e_comparison.ipynb @@ -21,6 +21,14 @@ "The following notebook uses the event‑driven syntax (with custom events, steps, and a workflow class) adapted from the technical datasheet and contract review examples." ] }, + { + "cell_type": "markdown", + "id": "ab7be988", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "36d8e34e-ed98-46ac-b744-1642f6e253d5", diff --git a/examples/extract/tabular_extraction.ipynb b/examples/extract/tabular_extraction.ipynb index 64824d8..eac083c 100644 --- a/examples/extract/tabular_extraction.ipynb +++ b/examples/extract/tabular_extraction.ipynb @@ -35,6 +35,14 @@ "📖 For more details, see the [Extraction Target documentation](https://developers.llamaindex.ai/python/cloud/llamaextract/features/concepts/#extraction-target)." ] }, + { + "cell_type": "markdown", + "id": "cb760594", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/index/getting_started.ipynb b/examples/index/getting_started.ipynb index 2d8977e..fb0544c 100644 --- a/examples/index/getting_started.ipynb +++ b/examples/index/getting_started.ipynb @@ -31,6 +31,13 @@ "| Sep-02-2025 | 0.6.62 | Active |\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/misc/parse_classify_extract_workflow.ipynb b/examples/misc/parse_classify_extract_workflow.ipynb index 3581ab8..28ea828 100644 --- a/examples/misc/parse_classify_extract_workflow.ipynb +++ b/examples/misc/parse_classify_extract_workflow.ipynb @@ -19,6 +19,13 @@ "The workflow is implemented as a proper LlamaIndex Workflow with separate steps for parsing, classification, and extraction, connected by typed events. This provides modularity, observability, and type safety." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/advanced_rag/dynamic_section_retrieval.ipynb b/examples/parse/advanced_rag/dynamic_section_retrieval.ipynb index bd7ceeb..1bbd19e 100644 --- a/examples/parse/advanced_rag/dynamic_section_retrieval.ipynb +++ b/examples/parse/advanced_rag/dynamic_section_retrieval.ipynb @@ -27,6 +27,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "e2b422f5", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "2e4f707a-c7b5-473f-b4a6-881e2245e82d", diff --git a/examples/parse/agents/demo_simple_openai_agent.ipynb b/examples/parse/agents/demo_simple_openai_agent.ipynb index 26326ed..0fadd09 100644 --- a/examples/parse/agents/demo_simple_openai_agent.ipynb +++ b/examples/parse/agents/demo_simple_openai_agent.ipynb @@ -14,6 +14,13 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/batch_parse_folder.py b/examples/parse/batch_parse_folder.py index 0360a52..3ab89cd 100644 --- a/examples/parse/batch_parse_folder.py +++ b/examples/parse/batch_parse_folder.py @@ -1,4 +1,9 @@ """ +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" +""" Example: Batch Processing a Folder of PDFs with LlamaParse This script demonstrates how to process multiple PDFs from a folder diff --git a/examples/parse/caltrain/caltrain_text_mode.ipynb b/examples/parse/caltrain/caltrain_text_mode.ipynb index 65c6f5e..fca8af2 100644 --- a/examples/parse/caltrain/caltrain_text_mode.ipynb +++ b/examples/parse/caltrain/caltrain_text_mode.ipynb @@ -17,6 +17,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "0cb82ca8", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "ef115dbe-b834-4639-828e-e2c11aef710b", diff --git a/examples/parse/demo_advanced.ipynb b/examples/parse/demo_advanced.ipynb index 39bb1ac..e76e600 100644 --- a/examples/parse/demo_advanced.ipynb +++ b/examples/parse/demo_advanced.ipynb @@ -18,6 +18,13 @@ "| Aug-18-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/demo_api.ipynb b/examples/parse/demo_api.ipynb index e3ee872..356fce7 100644 --- a/examples/parse/demo_api.ipynb +++ b/examples/parse/demo_api.ipynb @@ -14,6 +14,13 @@ "| Aug-18-2025 | N/A | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/demo_basic.ipynb b/examples/parse/demo_basic.ipynb index 1a2395c..fd842d0 100644 --- a/examples/parse/demo_basic.ipynb +++ b/examples/parse/demo_basic.ipynb @@ -14,6 +14,13 @@ "| Aug-18-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/demo_excel.ipynb b/examples/parse/demo_excel.ipynb index 963e768..322c2c9 100644 --- a/examples/parse/demo_excel.ipynb +++ b/examples/parse/demo_excel.ipynb @@ -18,6 +18,13 @@ "| Aug-18-2025 | 0.6.61 | Maintained |\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/demo_get_charts.ipynb b/examples/parse/demo_get_charts.ipynb index d674f27..e22caa6 100644 --- a/examples/parse/demo_get_charts.ipynb +++ b/examples/parse/demo_get_charts.ipynb @@ -19,6 +19,14 @@ "| Aug-18-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "bb595498", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "a004db48-8d3f-421c-915a-477692f71b90", diff --git a/examples/parse/demo_insurance.ipynb b/examples/parse/demo_insurance.ipynb index cbd2d40..3bb7fa2 100644 --- a/examples/parse/demo_insurance.ipynb +++ b/examples/parse/demo_insurance.ipynb @@ -16,6 +16,13 @@ "| Aug-19-2025 | 0.6.61 | Deprecated |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/demo_json.ipynb b/examples/parse/demo_json.ipynb index 95409cf..51d5ce4 100644 --- a/examples/parse/demo_json.ipynb +++ b/examples/parse/demo_json.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "8b937443", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "a004db48-8d3f-421c-915a-477692f71b90", diff --git a/examples/parse/demo_json_tour.ipynb b/examples/parse/demo_json_tour.ipynb index 15fa3f6..9ae5de6 100644 --- a/examples/parse/demo_json_tour.ipynb +++ b/examples/parse/demo_json_tour.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "037cc6d9", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "a004db48-8d3f-421c-915a-477692f71b90", diff --git a/examples/parse/demo_languages.ipynb b/examples/parse/demo_languages.ipynb index 14b70eb..ed9cc1e 100644 --- a/examples/parse/demo_languages.ipynb +++ b/examples/parse/demo_languages.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "7aa3be47", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/demo_mongodb.ipynb b/examples/parse/demo_mongodb.ipynb index d0ab4dc..432d2b5 100644 --- a/examples/parse/demo_mongodb.ipynb +++ b/examples/parse/demo_mongodb.ipynb @@ -21,6 +21,13 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/demo_starter_multimodal.ipynb b/examples/parse/demo_starter_multimodal.ipynb index 8413392..dbd1951 100644 --- a/examples/parse/demo_starter_multimodal.ipynb +++ b/examples/parse/demo_starter_multimodal.ipynb @@ -8,6 +8,14 @@ "\"Open" ] }, + { + "cell_type": "markdown", + "id": "da52cfa3", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "4e081457", diff --git a/examples/parse/demo_starter_parse_selected_pages.ipynb b/examples/parse/demo_starter_parse_selected_pages.ipynb index 2f95e3c..eb71440 100644 --- a/examples/parse/demo_starter_parse_selected_pages.ipynb +++ b/examples/parse/demo_starter_parse_selected_pages.ipynb @@ -7,6 +7,13 @@ "\"Open" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/demo_table_extraction.ipynb b/examples/parse/demo_table_extraction.ipynb index ee32d6e..c43fcb7 100644 --- a/examples/parse/demo_table_extraction.ipynb +++ b/examples/parse/demo_table_extraction.ipynb @@ -14,6 +14,13 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/excel/dcf_rag.ipynb b/examples/parse/excel/dcf_rag.ipynb index 881ecf8..6738db4 100644 --- a/examples/parse/excel/dcf_rag.ipynb +++ b/examples/parse/excel/dcf_rag.ipynb @@ -17,6 +17,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |\n" ] }, + { + "cell_type": "markdown", + "id": "a3636937", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "5f7d99ad-6ebd-47d0-92a7-566630b0c22a", diff --git a/examples/parse/excel/o1_excel_rag.ipynb b/examples/parse/excel/o1_excel_rag.ipynb index 025def4..65043d0 100755 --- a/examples/parse/excel/o1_excel_rag.ipynb +++ b/examples/parse/excel/o1_excel_rag.ipynb @@ -7,6 +7,13 @@ "\"Open" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/knowledge_graphs/kg_agent.ipynb b/examples/parse/knowledge_graphs/kg_agent.ipynb index 17aed8b..84907dc 100644 --- a/examples/parse/knowledge_graphs/kg_agent.ipynb +++ b/examples/parse/knowledge_graphs/kg_agent.ipynb @@ -17,6 +17,14 @@ "| Before Feb 2025 | N/A | Deprecated |" ] }, + { + "cell_type": "markdown", + "id": "0facb0b9", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "e8db8ac2-5221-44de-a53e-cb5ab37ac8f5", diff --git a/examples/parse/multimodal/claude_parse.ipynb b/examples/parse/multimodal/claude_parse.ipynb index 9c28f4f..fea1455 100644 --- a/examples/parse/multimodal/claude_parse.ipynb +++ b/examples/parse/multimodal/claude_parse.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |\n" ] }, + { + "cell_type": "markdown", + "id": "bb943339", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/multimodal/gemini2_flash.ipynb b/examples/parse/multimodal/gemini2_flash.ipynb index c78342e..b983e2b 100644 --- a/examples/parse/multimodal/gemini2_flash.ipynb +++ b/examples/parse/multimodal/gemini2_flash.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |\n" ] }, + { + "cell_type": "markdown", + "id": "17e62444", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/multimodal/gpt4o_mini.ipynb b/examples/parse/multimodal/gpt4o_mini.ipynb index f819737..6ef57d3 100644 --- a/examples/parse/multimodal/gpt4o_mini.ipynb +++ b/examples/parse/multimodal/gpt4o_mini.ipynb @@ -19,6 +19,14 @@ "| Aug-19-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "fe7e837a", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "15e60ecf-519c-41fc-911b-765adaf8bad4", diff --git a/examples/parse/multimodal/insurance_rag.ipynb b/examples/parse/multimodal/insurance_rag.ipynb index 5998186..7a49691 100644 --- a/examples/parse/multimodal/insurance_rag.ipynb +++ b/examples/parse/multimodal/insurance_rag.ipynb @@ -9,6 +9,13 @@ "\"Open" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/multimodal/legal_rag.ipynb b/examples/parse/multimodal/legal_rag.ipynb index 7584b2d..142b1fa 100644 --- a/examples/parse/multimodal/legal_rag.ipynb +++ b/examples/parse/multimodal/legal_rag.ipynb @@ -23,6 +23,13 @@ "- [US Immigration Case](https://github.com/user-attachments/files/16536446/us_immigration_case.pdf)" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/multimodal/multimodal_contextual_retrieval_rag.ipynb b/examples/parse/multimodal/multimodal_contextual_retrieval_rag.ipynb index 4315021..68ab010 100644 --- a/examples/parse/multimodal/multimodal_contextual_retrieval_rag.ipynb +++ b/examples/parse/multimodal/multimodal_contextual_retrieval_rag.ipynb @@ -27,6 +27,14 @@ "![mm_rag_diagram](./multimodal_contextual_retrieval_rag_img.png)" ] }, + { + "cell_type": "markdown", + "id": "93d4f9ab", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "54e8d9a7-5036-4d32-818f-00b2e888521f", diff --git a/examples/parse/multimodal/multimodal_rag_slide_deck.ipynb b/examples/parse/multimodal/multimodal_rag_slide_deck.ipynb index 0023308..b38688f 100644 --- a/examples/parse/multimodal/multimodal_rag_slide_deck.ipynb +++ b/examples/parse/multimodal/multimodal_rag_slide_deck.ipynb @@ -27,6 +27,14 @@ "![mm_rag_diagram](./multimodal_rag_slide_deck_img.png)" ] }, + { + "cell_type": "markdown", + "id": "fc1b5803", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "54e8d9a7-5036-4d32-818f-00b2e888521f", diff --git a/examples/parse/multimodal/multimodal_report_generation.ipynb b/examples/parse/multimodal/multimodal_report_generation.ipynb index df6d559..0341da1 100644 --- a/examples/parse/multimodal/multimodal_report_generation.ipynb +++ b/examples/parse/multimodal/multimodal_report_generation.ipynb @@ -19,6 +19,14 @@ "| Aug-20-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "id": "7dafd458", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "54e8d9a7-5036-4d32-818f-00b2e888521f", diff --git a/examples/parse/multimodal/multimodal_report_generation_agent.ipynb b/examples/parse/multimodal/multimodal_report_generation_agent.ipynb index a8df9ed..09e2efa 100644 --- a/examples/parse/multimodal/multimodal_report_generation_agent.ipynb +++ b/examples/parse/multimodal/multimodal_report_generation_agent.ipynb @@ -21,6 +21,14 @@ "We use our workflow abstraction to define an agentic system that contains two main phases: a research phase that pulls in relevant files through chunk-level or file-level retrieval, and then a blog generation phase that synthesizes the final report." ] }, + { + "cell_type": "markdown", + "id": "8c881021", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "id": "54e8d9a7-5036-4d32-818f-00b2e888521f", diff --git a/examples/parse/multimodal/product_manual_rag.ipynb b/examples/parse/multimodal/product_manual_rag.ipynb index e8ad5ed..2c16039 100644 --- a/examples/parse/multimodal/product_manual_rag.ipynb +++ b/examples/parse/multimodal/product_manual_rag.ipynb @@ -9,6 +9,13 @@ "\"Open" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/other_files/demo_ppt_basic.ipynb b/examples/parse/other_files/demo_ppt_basic.ipynb index fbb802b..aca1973 100644 --- a/examples/parse/other_files/demo_ppt_basic.ipynb +++ b/examples/parse/other_files/demo_ppt_basic.ipynb @@ -19,6 +19,14 @@ "| Prior to Feb-2025 | N/A | Deprecated |" ] }, + { + "cell_type": "markdown", + "id": "b27f0e78", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/other_files/demo_ppt_financial.ipynb b/examples/parse/other_files/demo_ppt_financial.ipynb index 1786591..751e673 100644 --- a/examples/parse/other_files/demo_ppt_financial.ipynb +++ b/examples/parse/other_files/demo_ppt_financial.ipynb @@ -14,6 +14,13 @@ "| Prior to Feb-2025 | N/A | Deprecated |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/parsing_instructions/parsing_instructions.ipynb b/examples/parse/parsing_instructions/parsing_instructions.ipynb index e71a839..9963641 100644 --- a/examples/parse/parsing_instructions/parsing_instructions.ipynb +++ b/examples/parse/parsing_instructions/parsing_instructions.ipynb @@ -29,6 +29,13 @@ "In this demonstration, we showcase how parsing instructions can be used to extract specific information from unstructured documents. Using a McDonald's Receipt, we show how to ignore parts of the document and only parse the price of each order and the final amount to be paid." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/parsing_modes/demo_auto_mode.ipynb b/examples/parse/parsing_modes/demo_auto_mode.ipynb index daae8d6..804609a 100644 --- a/examples/parse/parsing_modes/demo_auto_mode.ipynb +++ b/examples/parse/parsing_modes/demo_auto_mode.ipynb @@ -18,6 +18,13 @@ "Many documents can have varying complexity across pages - some pages have text, and other pages have images. The text-only pages only require cheap parsing modes, whereas the image-based pages require more advanced modes. In this notebook we show you how to take advantage of \"auto mode\" in LlamaParse which adaptively parses different pages according to different modes, which lets you get optimal performance at the cheapest cost.\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/parsing_modes/demo_layout_agent_mode_visual_citations.ipynb b/examples/parse/parsing_modes/demo_layout_agent_mode_visual_citations.ipynb index ba8e818..0c3cb32 100644 --- a/examples/parse/parsing_modes/demo_layout_agent_mode_visual_citations.ipynb +++ b/examples/parse/parsing_modes/demo_layout_agent_mode_visual_citations.ipynb @@ -37,6 +37,13 @@ "With visual references, you can build applications that preserve document structure and provide users with trustworthy, traceable visual citations. We will now leverage this feature to build our query engine." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/parse/parsing_modes/demo_presets.ipynb b/examples/parse/parsing_modes/demo_presets.ipynb index 8767ca1..0d10885 100644 --- a/examples/parse/parsing_modes/demo_presets.ipynb +++ b/examples/parse/parsing_modes/demo_presets.ipynb @@ -24,6 +24,13 @@ "| Aug-18-2025 | 0.6.61 | Maintained |" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/report_generation/rfp_response/generate_rfp.ipynb b/examples/parse/report_generation/rfp_response/generate_rfp.ipynb index f8a7852..8d51305 100644 --- a/examples/parse/report_generation/rfp_response/generate_rfp.ipynb +++ b/examples/parse/report_generation/rfp_response/generate_rfp.ipynb @@ -26,6 +26,14 @@ "We use LlamaParse to parse the context documents as well as the RFP document itself." ] }, + { + "cell_type": "markdown", + "id": "ad140aef", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/parse/test_tesla_impact_report/test_gpt4o.ipynb b/examples/parse/test_tesla_impact_report/test_gpt4o.ipynb index ba70350..193adbc 100644 --- a/examples/parse/test_tesla_impact_report/test_gpt4o.ipynb +++ b/examples/parse/test_tesla_impact_report/test_gpt4o.ipynb @@ -22,6 +22,14 @@ "**NOTE**: The pricing for LlamaParse + gpt4o is an order more expensive than using LlamaParse by default. Currently, every page parsed with gpt4o counts for 10 pages in the LlamaParse usage tracker.\n" ] }, + { + "cell_type": "markdown", + "id": "211c52fe", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/examples/sheets/coding-agent-analysis/generate_sample_data.py b/examples/sheets/coding-agent-analysis/generate_sample_data.py index fe0726f..8e19070 100644 --- a/examples/sheets/coding-agent-analysis/generate_sample_data.py +++ b/examples/sheets/coding-agent-analysis/generate_sample_data.py @@ -1,4 +1,9 @@ """ +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" +""" Generate sample spreadsheets for LlamaSheets + Claude workflows. This script creates example Excel files that demonstrate different use cases: diff --git a/examples/sheets/coding-agent-analysis/scripts/extract.py b/examples/sheets/coding-agent-analysis/scripts/extract.py index f4c2c8c..3c71631 100644 --- a/examples/sheets/coding-agent-analysis/scripts/extract.py +++ b/examples/sheets/coding-agent-analysis/scripts/extract.py @@ -1,3 +1,8 @@ +""" +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" """Helper script to extract spreadsheets using LlamaSheets.""" import asyncio diff --git a/examples/sheets/llama-index-agent/generate_sample_data.py b/examples/sheets/llama-index-agent/generate_sample_data.py index 38e1a7f..78bb603 100644 --- a/examples/sheets/llama-index-agent/generate_sample_data.py +++ b/examples/sheets/llama-index-agent/generate_sample_data.py @@ -1,4 +1,9 @@ """ +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" +""" Generate sample spreadsheets for LlamaSheets + LlamaIndex Agent workflows. This script creates example Excel files that demonstrate different use cases: diff --git a/examples/sheets/llama-index-agent/llama_index_example.py b/examples/sheets/llama-index-agent/llama_index_example.py index aba6ef1..d71a31d 100644 --- a/examples/sheets/llama-index-agent/llama_index_example.py +++ b/examples/sheets/llama-index-agent/llama_index_example.py @@ -1,4 +1,9 @@ """ +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" +""" LlamaSheets Agent with LlamaIndex This example shows how to build an agent that can work with spreadsheet data diff --git a/examples/sheets/llama-index-agent/scripts/extract.py b/examples/sheets/llama-index-agent/scripts/extract.py index f4c2c8c..3c71631 100644 --- a/examples/sheets/llama-index-agent/scripts/extract.py +++ b/examples/sheets/llama-index-agent/scripts/extract.py @@ -1,3 +1,8 @@ +""" +⚠️ DEPRECATION NOTICE: +This example uses the deprecated llama-cloud-services package, which will be maintained until May 1, 2026. +Please migrate to: pip install llama-cloud>=1.0 (https://github.com/run-llama/llama-cloud-py) +""" """Helper script to extract spreadsheets using LlamaSheets.""" import asyncio diff --git a/examples/split/document_splitting/document_splitting.ipynb b/examples/split/document_splitting/document_splitting.ipynb index 7e5aad8..0339744 100644 --- a/examples/split/document_splitting/document_splitting.ipynb +++ b/examples/split/document_splitting/document_splitting.ipynb @@ -26,6 +26,13 @@ "We'll split this into segments categorized as either `essay` or `research_paper`.\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **⚠️ DEPRECATION NOTICE**>> This example uses the deprecated `llama-cloud-services` package, which will be maintained until **May 1, 2026**.>> **Please migrate to:**> - **Python**: `pip install llama-cloud>=1.0` ([GitHub](https://github.com/run-llama/llama-cloud-py))> - **New Package Documentation**: https://docs.cloud.llamaindex.ai/>> The new package provides the same functionality with improved performance and support." + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/py/llama_cloud_services/__init__.py b/py/llama_cloud_services/__init__.py index 9fb12ca..c6c4b47 100644 --- a/py/llama_cloud_services/__init__.py +++ b/py/llama_cloud_services/__init__.py @@ -1,3 +1,5 @@ +import warnings + from llama_cloud_services.parse import LlamaParse from llama_cloud_services.extract import LlamaExtract, ExtractionAgent from llama_cloud_services.utils import SourceText, FileInput @@ -8,6 +10,16 @@ from llama_cloud_services.index import ( LlamaCloudRetriever, ) +# Emit deprecation warning once when package is imported +warnings.warn( + "This package (llama-cloud-services) is deprecated and will be maintained until May 1, 2026. " + "Please migrate to the new package: pip install llama-cloud>=1.0 " + "(https://github.com/run-llama/llama-cloud-py). " + "The new package provides the same functionality with improved performance and support.", + DeprecationWarning, + stacklevel=2, +) + __all__ = [ "LlamaParse", "LlamaExtract", diff --git a/ts/llama_cloud_services/src/index.ts b/ts/llama_cloud_services/src/index.ts index 7733d41..b739bdf 100644 --- a/ts/llama_cloud_services/src/index.ts +++ b/ts/llama_cloud_services/src/index.ts @@ -1,3 +1,13 @@ +// Emit deprecation warning once when package is imported +if (typeof console !== "undefined" && console.warn) { + console.warn( + "⚠️ DEPRECATION WARNING: This package (llama_cloud_services) is deprecated and will be maintained until May 1, 2026. " + + "Please migrate to the new package: npm install @llamaindex/llama-cloud " + + "(https://github.com/run-llama/llama-cloud-ts). " + + "The new package provides the same functionality with improved performance and support.", + ); +} + export { LLamaCloudFileService } from "./LLamaCloudFileService.js"; export { LlamaCloudIndex } from "./LlamaCloudIndex.js"; export {