Fix: missing file formats in hierarchical_manager (#11129)
### What problem does this PR solve? Fix: missing file formats in hierarchical_manager #11084 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
parent
86af330f06
commit
4338e706c6
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class HierarchicalMergerFromUpstream(BaseModel):
|
|||
file: dict | None = Field(default=None)
|
||||
chunks: list[dict[str, Any]] | None = Field(default=None)
|
||||
|
||||
output_format: Literal["json", "chunks"] | None = Field(default=None)
|
||||
output_format: Literal["json", "markdown", "text", "html", "chunks"] | None = Field(default=None)
|
||||
json_result: list[dict[str, Any]] | None = Field(default=None, alias="json")
|
||||
markdown_result: str | None = Field(default=None, alias="markdown")
|
||||
text_result: str | None = Field(default=None, alias="text")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue