Skip to content

Commit 23c096f

Browse files
authored
ench: llama index Websearch agent readme.md, requiorements update
2 parents c871740 + 841d43d commit 23c096f

9 files changed

Lines changed: 187 additions & 350 deletions

File tree

agents/base/langgraph_react_agent/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,13 @@ uv run agents/base/langgraph_react_agent/examples/execute_ai_service_locally.py
112112
```
113113

114114
# Deployment on RedHat OpenShift Cluster
115+
Login to OC
115116
```bash
116-
117+
oc login -u "login" -p "password" https://super-link-to-cluster:111
118+
```
119+
Login ex. Docker
120+
```bash
121+
docker login -u='login' -p='password' quay.io
117122
```
118123

119124
Make deploy file executable
@@ -132,7 +137,7 @@ This will:
132137
- Deploy the agent to OpenShift
133138
- Create Service and Route
134139

135-
Get the route URL
140+
COPY the route URL and PASTE into the CURL below
136141
```bash
137142
oc get route langgraph-react-agent -o jsonpath='{.spec.host}'
138143
```

agents/base/llamaindex_websearch_agent/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LlamaIndex Websearch Agent
2-
# Use Python 3.11 slim image as base
3-
FROM python:3.11-slim
2+
# Use Python 3.12 slim image as base
3+
FROM python:3.12-slim
44

55
# Set working directory
66
WORKDIR /app

0 commit comments

Comments
 (0)