Skip to content

Commit 1c609d7

Browse files
committed
fix llama_index json file path
1 parent 3076f3f commit 1c609d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-llamaindex"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "UiPath LlamaIndex SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_llamaindex/_cli/_utils/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async def cleanup(self):
109109

110110

111111
class LlamaIndexConfig:
112-
def __init__(self, config_path: str = "llama.json"):
112+
def __init__(self, config_path: str = "llama_index.json"):
113113
self.config_path = config_path
114114
self._config: Optional[Dict[str, Any]] = None
115115
self._workflows: List[WorkflowConfig] = []

0 commit comments

Comments
 (0)