You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/uipath-llamaindex/docs/llms_and_embeddings.md
+96-6Lines changed: 96 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# LLMs and Embeddings
2
2
3
3
UiPath provides pre-configured LLM and embedding classes that handle authentication, routing, and configuration automatically, allowing you to focus on building your agents.
4
-
You do not need to add tokens from OpenAI, usage of these models will consume `Agent Units` on your account.
4
+
You do not need to add API keys from OpenAI, AWS, or Google, usage of these models will consume `Agent Units` on your account.
5
5
6
6
## UiPathOpenAI
7
7
@@ -49,10 +49,10 @@ print(response)
49
49
from uipath_llamaindex.llms import UiPathOpenAI, OpenAIModel
## UiPathChatBedrock and UiPathChatBedrockConverse
101
+
102
+
`UiPathChatBedrock` and `UiPathChatBedrockConverse` provide access to AWS Bedrock models through UiPath using the Invoke API and Converse API respectively.
103
+
104
+
### Installation
105
+
106
+
These classes require additional dependencies. Install them with:
107
+
108
+
```bash
109
+
pip install uipath-llamaindex[bedrock]
110
+
# or using uv:
111
+
uv add 'uipath-llamaindex[bedrock]'
112
+
```
113
+
114
+
### Example Usage
115
+
116
+
```python
117
+
from uipath_llamaindex.llms.bedrock import UiPathChatBedrockConverse
0 commit comments