diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 9c5eab3..00c2180 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -38,7 +38,6 @@ jobs: with: poetry_version: ${{ env.POETRY_VERSION }} python_version: ${{ env.PYTHON_VERSION }} - working_directory: "llama_cloud_services" pypi_token: ${{ secrets.LLAMA_PARSE_PYPI_TOKEN }} poetry_install_options: "--without dev" diff --git a/llama_parse/pyproject.toml b/llama_parse/pyproject.toml index 4463f07..17253b0 100644 --- a/llama_parse/pyproject.toml +++ b/llama_parse/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "llama-parse" -version = "0.5.21" +version = "0.6.0" description = "Parse files into RAG-Optimized formats." authors = ["Logan Markewich "] license = "MIT" diff --git a/pyproject.toml b/pyproject.toml index 87919f1..f69bc20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ python_version = "3.10" [tool.poetry] name = "llama-cloud-services" -version = "0.1.0" +version = "0.6.0" description = "Tailored SDK clients for LlamaCloud services." authors = ["Logan Markewich "] license = "MIT" diff --git a/tests/report/test_llama_report.py b/tests/report/test_llama_report.py index 9d85d9d..97a9bec 100644 --- a/tests/report/test_llama_report.py +++ b/tests/report/test_llama_report.py @@ -97,7 +97,7 @@ async def test_report_plan_workflow(report: ReportClient) -> None: # Get edit suggestions suggestions = await report.asuggest_edits( - "Make the text more formal.", auto_history=True + "TLDR section header more formal.", auto_history=True ) assert len(suggestions) > 0