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
13 changes: 0 additions & 13 deletions packages/uipath-llamaindex/docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ Generate your first UiPath LlamaIndex agent:
✓ Created 'main.py' file.
✓ Created 'llama_index.json' file.
✓ Created 'pyproject.toml' file.
🔧 Please ensure to define OPENAI_API_KEY in your .env file.
💡 Initialize project: uipath init
💡 Run agent: uipath run agent '{"topic": "UiPath"}'
```
Expand Down Expand Up @@ -138,18 +137,6 @@ This command creates the following files:
| `uipath.json` | Input/output JSON schemas and bindings. |
| `agent.mermaid` | Graph visual representation. |

## Set Up Environment Variables

Before running the agent, configure `OPENAI_API_KEY` in the `.env` file:

//// tab | Open AI

```
OPENAI_API_KEY=sk-proj-......
```

////

## Authenticate With UiPath

<!-- termynal -->
Expand Down
2 changes: 1 addition & 1 deletion packages/uipath-llamaindex/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-llamaindex"
version = "0.5.15"
version = "0.5.16"
description = "Python SDK that enables developers to build and deploy LlamaIndex agents to the UiPath Cloud Platform"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ def generate_pyproject(target_directory, project_name):
description = "{project_name}"
authors = [{{ name = "John Doe", email = "john.doe@myemail.com" }}]
dependencies = [
"uipath-llamaindex>=0.5.0, <0.6.0",
"llama-index-llms-openai>=0.6.10"
"uipath-llamaindex[bedrock,vertex]>=0.5.0, <0.6.0",
]
requires-python = ">=3.11"
"""
Expand All @@ -54,9 +53,6 @@ def llamaindex_new_middleware(name: str) -> MiddlewareResult:
console.success("Created 'llama_index.json' file.")
generate_pyproject(directory, name)
console.success("Created 'pyproject.toml' file.")
console.config(
f""" Please ensure to define {click.style("OPENAI_API_KEY", fg="bright_yellow")} in your .env file. """
)
init_command = """uipath init"""
run_command = """uipath run agent '{"topic": "UiPath"}'"""
console.hint(
Expand Down
2 changes: 1 addition & 1 deletion packages/uipath-llamaindex/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading