Skip to content
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: 1 addition & 0 deletions copier/copy_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def run_copier_quietly(src_path: str, dst_path: str, data: Dict[str, str]) -> No
data=data,
unsafe=True,
quiet=True,
vcs_ref="HEAD",
)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Extracts data"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"llama-cloud-services>=0.6.59",
"llama-cloud-services>=0.6.67",
"llama-index-workflows>=2.2.0,<3.0.0",
"python-dotenv>=1.1.0",
"jsonref>=1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/{{ project_name_snake }}/config.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_extract_agent() -> ExtractionAgent:
@functools.lru_cache(maxsize=None)
def get_data_client() -> AsyncAgentDataClient:
return AsyncAgentDataClient(
agent_url_id=agent_name,
deployment_name=agent_name,
collection=extracted_data_collection,
# update MySchema for your schema, but retain the ExtractedData container
type=ExtractedData[MySchema],
Expand Down
2 changes: 1 addition & 1 deletion test-proj/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Extracts data"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"llama-cloud-services>=0.6.59",
"llama-cloud-services>=0.6.67",
"llama-index-workflows>=2.2.0,<3.0.0",
"python-dotenv>=1.1.0",
"jsonref>=1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test-proj/src/test_proj/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_extract_agent() -> ExtractionAgent:
@functools.lru_cache(maxsize=None)
def get_data_client() -> AsyncAgentDataClient:
return AsyncAgentDataClient(
agent_url_id=agent_name,
deployment_name=agent_name,
collection=extracted_data_collection,
# update MySchema for your schema, but retain the ExtractedData container
type=ExtractedData[MySchema],
Expand Down
2 changes: 1 addition & 1 deletion test-proj/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@babel/runtime": "^7.27.6",
"@lezer/highlight": "^1.2.1",
"@llamaindex/ui": "^1.0.2",
"@llamaindex/ui": "^1.0.3",
"@radix-ui/themes": "^3.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@babel/runtime": "^7.27.6",
"@lezer/highlight": "^1.2.1",
"@llamaindex/ui": "^1.0.2",
"@llamaindex/ui": "^1.0.3",
"@radix-ui/themes": "^3.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand Down