Compare commits

..

2 Commits

Author SHA1 Message Date
Logan Markewich 38d6ae2e6a changeset 2025-12-03 14:50:06 -06:00
Daniel Bustamante Ospina 2a546a5452 Add new fields to SpreadsheetParsingConfig and update validation tests
- Introduced `flatten_hierarchical_tables` and `table_merge_sensitivity` fields to `SpreadsheetParsingConfig`.
- Updated `model_config` to ignore unknown fields.
- Added unit tests for new fields, their validation, and handling of unknown fields.
2025-12-03 14:50:56 -05:00
7 changed files with 10 additions and 18 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"llama-cloud-services-py": patch
---
Update spreadsheet parsing config
-6
View File
@@ -1,11 +1,5 @@
# llama-cloud-services-py
## 0.6.87
### Patch Changes
- 06c3c55: Update spreadsheet parsing config
## 0.6.86
### Patch Changes
-7
View File
@@ -1,12 +1,5 @@
# llama_parse
## 0.6.87
### Patch Changes
- Updated dependencies [06c3c55]
- llama-cloud-services-py@0.6.87
## 0.6.86
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llama_parse",
"version": "0.6.87",
"version": "0.6.86",
"description": "",
"main": "index.js",
"private": false,
+2 -2
View File
@@ -11,13 +11,13 @@ dev = [
[project]
name = "llama-parse"
version = "0.6.87"
version = "0.6.86"
description = "Parse files into RAG-Optimized formats."
authors = [{name = "Logan Markewich", email = "logan@llamaindex.ai"}]
requires-python = ">=3.9,<4.0"
readme = "README.md"
license = "MIT"
dependencies = ["llama-cloud-services>=0.6.87"]
dependencies = ["llama-cloud-services>=0.6.86"]
[project.scripts]
llama-parse = "llama_parse.cli.main:parse"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llama-cloud-services-py",
"version": "0.6.87",
"version": "0.6.86",
"private": false,
"license": "MIT",
"scripts": {},
+1 -1
View File
@@ -23,7 +23,7 @@ dev = [
[project]
name = "llama-cloud-services"
version = "0.6.87"
version = "0.6.86"
description = "Tailored SDK clients for LlamaCloud services."
authors = [{name = "Logan Markewich", email = "logan@runllama.ai"}]
requires-python = ">=3.9,<4.0"