Skip to content

Commit 085b22c

Browse files
authored
Merge branch 'develop' into feature/json-schema-extraction-model
2 parents 8dbd6aa + 702a67d commit 085b22c

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

lib/idp_common_pkg/idp_common/extraction/service.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import logging
1515
import os
1616
import time
17-
from typing import Any, Dict, List, Union
17+
from typing import Any, Dict, List, Optional, Type
1818

1919
from idp_common import bedrock, image, metrics, s3, utils
2020
from idp_common.config.models import IDPConfig
@@ -31,6 +31,8 @@
3131

3232
# Conditional import for agentic extraction (requires Python 3.10+ dependencies)
3333
try:
34+
from pydantic import BaseModel, Field, create_model
35+
3436
from idp_common.extraction.agentic_idp import structured_output
3537

3638
AGENTIC_AVAILABLE = True

src/ui/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"eslint-plugin-react": "^7.37.4",
9696
"eslint-plugin-react-hooks": "^4.6.2",
9797
"prettier": "^2.8.8",
98-
"vite": "^7.1.10",
98+
"vite": "^7.1.12",
9999
"vite-plugin-svgr": "^4.5.0"
100100
},
101101
"jest": {

0 commit comments

Comments
 (0)