Signed-off-by: Rita Brugarolas <rita.brugarolas.brufau@intel.com> Signed-off-by: theresa <theresa.shan@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: theresa <theresa.shan@intel.com>
21 lines
719 B
Bash
21 lines
719 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Remember to set your private variables mentioned in README
|
|
|
|
# host_ip, OPENAI_API_KEY, HUGGINGFACEHUB_API_TOKEN, proxies...
|
|
|
|
export EMBEDDING_MODEL_ID="BAAI/bge-base-en-v1.5"
|
|
export OPENAI_EMBEDDING_MODEL="text-embedding-3-small"
|
|
export LLM_MODEL_ID="meta-llama/Meta-Llama-3-8B-Instruct"
|
|
export OPENAI_LLM_MODEL="gpt-4o"
|
|
export TEI_EMBEDDING_ENDPOINT="http://${host_ip}:6006"
|
|
export TGI_LLM_ENDPOINT="http://${host_ip}:6005"
|
|
export NEO4J_URL="bolt://${host_ip}:7687"
|
|
export NEO4J_USERNAME=neo4j
|
|
export DATAPREP_SERVICE_ENDPOINT="http://${host_ip}:6004/v1/dataprep"
|
|
export LOGFLAG=True
|
|
export RETRIEVER_SERVICE_PORT=80
|