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
Two options are provided for the `llm_engine` of the agents: 1. open-source LLMs on Gaudi, 2. OpenAI models via API calls.
147
+
We make it convenient to launch the whole system with docker compose, which includes microservices for LLM, agents, UI, retrieval tool, vector database, dataprep, and telemetry. There are 3 docker compose files, which make it easy for users to pick and choose. Users can choose a different retrieval tool other than the `DocIndexRetriever` example provided in our GenAIExamples repo. Users can choose not to launch the telemetry containers.
148
148
149
-
#### Gaudi
149
+
#### Launch on Gaudi
150
150
151
-
On Gaudi, `meta-llama/Meta-Llama-3.1-70B-Instruct` will be served using vllm.
152
-
By default, both the RAG agent and SQL agent will be launched to support the React Agent.
153
-
The React Agent requires the DocIndexRetriever's [`compose.yaml`](../DocIndexRetriever/docker_compose/intel/cpu/xeon/compose.yaml) file, so two `compose.yaml` files need to be run with docker compose to start the multi-agent system.
154
-
155
-
> **Note**: To enable the web search tool, skip this step and proceed to the "[Optional] Web Search Tool Support" section.
151
+
On Gaudi, `meta-llama/Meta-Llama-3.3-70B-Instruct` will be served using vllm. The command below will launch the multi-agent system with the `DocIndexRetriever` as the retrieval tool for the Worker RAG agent.
By default, both the RAG Agent and SQL Agent will be launched to support the React Agent.
190
-
The React Agent requires the DocIndexRetriever's [`compose.yaml`](../DocIndexRetriever/docker_compose/intel/cpu/xeon/compose.yaml) file, so two `compose yaml` files need to be run with docker compose to start the multi-agent system.
186
+
On Xeon, only OpenAI models are supported. The command below will launch the multi-agent system with the `DocIndexRetriever` as the retrieval tool for the Worker RAG agent.
191
187
192
188
```bash
193
189
export OPENAI_API_KEY=<your-openai-key>
@@ -206,9 +202,10 @@ bash run_ingest_data.sh
206
202
207
203
> **Note**: This is a one-time operation.
208
204
209
-
## Launch the UI
205
+
## How to interact with the agent system with UI
210
206
211
-
Open a web browser to http://localhost:5173 to access the UI.
207
+
The UI microservice is launched in the previous step with the other microservices.
208
+
To see the UI, open a web browser to `http://${ip_address}:5173` to access the UI. Note the `ip_address` here is the host IP of the UI microservice.
212
209
213
210
1.`create Admin Account` with a random value
214
211
2. add opea agent endpoint `http://$ip_address:9090/v1` which is a openai compatible api
0 commit comments