Add copier-update script to help run mass copier updates (#166)

* add updater script

* bump versions

* fixer

* chore(classify-extract-sec): copier update

* chore(extract-basic): copier update

* chore(extract-reconcile-invoice): copier update

* fix format
This commit is contained in:
Adrian Lyjak
2026-01-13 07:59:26 -05:00
committed by GitHub
parent 8586b25e8a
commit 0ecd2e1f06
7 changed files with 50 additions and 15 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v0.3.4
_commit: v0.4.0
_src_path: https://github.com/run-llama/template-workflow-data-extraction
+1 -1
View File
@@ -26,7 +26,7 @@ For more complex customizations, you can edit the rest of the application. For e
## Linting and type checking
Python and javascript pacakges contain helpful scripts to lint, format, and type check the code.
Python and javascript packages contain helpful scripts to lint, format, and type check the code.
To check and fix python code:
+2 -1
View File
@@ -38,7 +38,8 @@ EXTRACT_CONFIG = ExtractConfig(
extraction_mode=ExtractMode.PREMIUM,
system_prompt=None,
# advanced. Only compatible with Premium mode.
citation_bbox=True,
use_reasoning=False,
cite_sources=False,
cite_sources=True,
confidence_scores=True,
)
+1 -1
View File
@@ -21,7 +21,7 @@
"@radix-ui/themes": "^3.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"llama-cloud-services": "^0.3.4",
"llama-cloud-services": "^0.5.2",
"lucide-react": "^0.514.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
+37
View File
@@ -1,6 +1,43 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
import type { Highlight } from "@llamaindex/ui";
import type { FieldCitation } from "llama-cloud-services/beta/agent";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function convertBoundingBoxesToHighlights(
citations: FieldCitation[] | undefined,
): Highlight[] {
if (!citations || citations.length === 0) return [];
const highlights: Highlight[] = [];
for (const citation of citations) {
const page = citation.page ?? 1;
const boundingBoxes = citation.bounding_boxes;
if (boundingBoxes && boundingBoxes.length > 0) {
for (const bbox of boundingBoxes) {
highlights.push({
page,
x: bbox.x,
y: bbox.y,
width: bbox.w,
height: bbox.h,
});
}
} else if (citation.page !== undefined) {
highlights.push({
page,
x: 0,
y: 0,
width: 0,
height: 0,
});
}
}
return highlights;
}
+1 -1
View File
@@ -30,7 +30,7 @@ function TaskList() {
<ItemCount
title="Reviewed"
filter={{
status: { eq: "approved" },
status: { includes: ["approved", "rejected"] },
}}
key={`reviewed-${reloadSignal}`}
/>
+7 -10
View File
@@ -15,6 +15,7 @@ import { modifyJsonSchema } from "@llamaindex/ui/lib";
import { APP_TITLE } from "@/lib/config";
import { downloadExtractedDataItem } from "@/lib/export";
import { useMetadataContext } from "@/lib/MetadataProvider";
import { convertBoundingBoxesToHighlights } from "@/lib/utils";
export default function ItemPage() {
const { itemId } = useParams<{ itemId: string }>();
@@ -111,7 +112,7 @@ export default function ItemPage() {
return (
<div className="flex h-full bg-gray-50">
{/* Left Side - File Preview */}
<div className="w-1/2 border-r border-gray-200 bg-white">
<div className="w-1/2 border-r h-full border-gray-200 bg-white">
{itemData.data.file_id && (
<FilePreview
fileId={itemData.data.file_id}
@@ -133,15 +134,11 @@ export default function ItemPage() {
onChange={(updatedData) => {
updateData(updatedData);
}}
onClickField={(args) => {
// TODO: set multiple highlights
setHighlight({
page: args.metadata?.citation?.[0]?.page ?? 1,
x: 100,
y: 100,
width: 0,
height: 0,
});
onHoverField={(args) => {
const highlights = convertBoundingBoxesToHighlights(
args?.metadata?.citation,
);
setHighlight(highlights[0]);
}}
jsonSchema={itemHookData.jsonSchema}
/>