We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93e915c commit 01b221cCopy full SHA for 01b221c
1 file changed
src/uipath_llamaindex/_cli/cli_run.py
@@ -31,7 +31,7 @@ def llamaindex_run_middleware(
31
32
async def execute():
33
context = UiPathLlamaIndexRuntimeContext.from_config(
34
- env.get("UIPATH_CONFIG_PATH", "uipath.json")
+ env.get("UIPATH_CONFIG_PATH", "uipath.json"), **kwargs
35
)
36
context.config = config
37
context.entrypoint = entrypoint
@@ -40,6 +40,7 @@ async def execute():
40
context.debug = kwargs.get("debug", False)
41
context.input_file = kwargs.get("input_file", None)
42
context.execution_output_file = kwargs.get("execution_output_file", None)
43
+ context.eval_run = kwargs.get("eval_run", False)
44
context.logs_min_level = env.get("LOG_LEVEL", "INFO")
45
context.job_id = env.get("UIPATH_JOB_KEY")
46
context.trace_id = env.get("UIPATH_TRACE_ID")
0 commit comments