Skip to content

Commit 4a8493b

Browse files
authored
remove agent_url_id (#37)
* remove agent_url_id * fix
1 parent d83d279 commit 4a8493b

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

copier/copy_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def run_copier_quietly(src_path: str, dst_path: str, data: Dict[str, str]) -> No
4444
data=data,
4545
unsafe=True,
4646
quiet=True,
47+
vcs_ref="HEAD",
4748
)
4849

4950

pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Extracts data"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"llama-cloud-services>=0.6.59",
8+
"llama-cloud-services>=0.6.67",
99
"llama-index-workflows>=2.2.0,<3.0.0",
1010
"python-dotenv>=1.1.0",
1111
"jsonref>=1.1.0",

src/{{ project_name_snake }}/config.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_extract_agent() -> ExtractionAgent:
5656
@functools.lru_cache(maxsize=None)
5757
def get_data_client() -> AsyncAgentDataClient:
5858
return AsyncAgentDataClient(
59-
agent_url_id=agent_name,
59+
deployment_name=agent_name,
6060
collection=extracted_data_collection,
6161
# update MySchema for your schema, but retain the ExtractedData container
6262
type=ExtractedData[MySchema],

test-proj/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Extracts data"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"llama-cloud-services>=0.6.59",
8+
"llama-cloud-services>=0.6.67",
99
"llama-index-workflows>=2.2.0,<3.0.0",
1010
"python-dotenv>=1.1.0",
1111
"jsonref>=1.1.0",

test-proj/src/test_proj/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_extract_agent() -> ExtractionAgent:
5656
@functools.lru_cache(maxsize=None)
5757
def get_data_client() -> AsyncAgentDataClient:
5858
return AsyncAgentDataClient(
59-
agent_url_id=agent_name,
59+
deployment_name=agent_name,
6060
collection=extracted_data_collection,
6161
# update MySchema for your schema, but retain the ExtractedData container
6262
type=ExtractedData[MySchema],

test-proj/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@babel/runtime": "^7.27.6",
1818
"@lezer/highlight": "^1.2.1",
19-
"@llamaindex/ui": "^1.0.2",
19+
"@llamaindex/ui": "^1.0.3",
2020
"@radix-ui/themes": "^3.2.1",
2121
"class-variance-authority": "^0.7.1",
2222
"clsx": "^2.1.1",

ui/package.json.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"dependencies": {
1717
"@babel/runtime": "^7.27.6",
1818
"@lezer/highlight": "^1.2.1",
19-
"@llamaindex/ui": "^1.0.2",
19+
"@llamaindex/ui": "^1.0.3",
2020
"@radix-ui/themes": "^3.2.1",
2121
"class-variance-authority": "^0.7.1",
2222
"clsx": "^2.1.1",

0 commit comments

Comments
 (0)