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: WorkflowExecAgent/README.md
+24-5Lines changed: 24 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,9 +72,9 @@ And finally here are the results from the microservice logs:
72
72
73
73
### Start Agent Microservice
74
74
75
-
Workflow Executor will have a single docker image.
75
+
Workflow Executor will have a single docker image.
76
76
77
-
(Optional) Build the agent docker image with the most latest changes.
77
+
(Optional) Build the agent docker image with the most latest changes.
78
78
By default, Workflow Executor uses public [opea/vllm](https://hub.docker.com/r/opea/agent) docker image if no local built image exists.
79
79
80
80
```sh
@@ -85,6 +85,24 @@ cd GenAIExamples//WorkflowExecAgent/docker_image_build/
85
85
docker compose -f build.yaml build --no-cache
86
86
```
87
87
88
+
<details>
89
+
<summary> Using Remote LLM Endpoints </summary>
90
+
When models are deployed on a remote server, a base URL and an API key are required to access them. To set up a remote server and acquire the base URL and API key, refer to <ahref="https://www.intel.com/content/www/us/en/products/docs/accelerator-engines/enterprise-ai.html"> Intel® AI for Enterprise Inference </a> offerings.
91
+
92
+
Set the following environment variables.
93
+
94
+
-`llm_endpoint_url` is the HTTPS endpoint of the remote server with the model of choice (i.e. https://api.inference.denvrdata.com). **Note:** If not using LiteLLM, the second part of the model card needs to be appended to the URL i.e. `/Llama-3.3-70B-Instruct` from `meta-llama/Llama-3.3-70B-Instruct`.
95
+
-`llm_endpoint_api_key` is the access token or key to access the model(s) on the server.
96
+
-`LLM_MODEL_ID` is the model card which may need to be overwritten depending on what it is set to `set_env.sh`.
0 commit comments