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
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.
146
147
147
-
Two options are provided for the `llm_engine` of the agents: 1. open-source LLMs on Gaudi, 2. OpenAI models via API calls.
148
-
149
-
#### Gaudi
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.
156
-
148
+
#### Launch on Gaudi
149
+
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.
183
+
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
184
192
185
```bash
193
186
export OPENAI_API_KEY=<your-openai-key>
@@ -206,9 +199,9 @@ bash run_ingest_data.sh
206
199
207
200
> **Note**: This is a one-time operation.
208
201
209
-
## Launch the UI
210
-
211
-
Open a web browser to http://localhost:5173 to access the UI.
202
+
## How to interact with the agent system with UI
203
+
The UI microservice is launched in the previous step with the other microservices.
204
+
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
205
213
206
1.`create Admin Account` with a random value
214
207
2. add opea agent endpoint `http://$ip_address:9090/v1` which is a openai compatible api
0 commit comments