Compare commits

...

3 Commits

Author SHA1 Message Date
Logan Markewich 218d26ab8d nit 2025-02-06 16:50:55 -06:00
Logan Markewich f3530a89b4 nit release 2025-02-06 16:45:28 -06:00
Logan Markewich b64ca3c55f v0.6.0 2025-02-06 16:18:28 -06:00
4 changed files with 3 additions and 4 deletions
-1
View File
@@ -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"
+1 -1
View File
@@ -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 <logan@llamaindex.ai>"]
license = "MIT"
+1 -1
View File
@@ -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 <logan@runllama.ai>"]
license = "MIT"
+1 -1
View File
@@ -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