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

v0.6.0 #603

Merged
merged 3 commits into from
Feb 6, 2025
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: 0 additions & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion llama_parse/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/report/test_llama_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading