-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update environment variables in .envrc
- Loading branch information
1 parent
45048b8
commit 0eff604
Showing
1 changed file
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
export TGI_HOST=131.151.90.37 | ||
export TGI_PORT=8080 | ||
export TEI_HOST=131.151.90.37 | ||
export TEI_PORT=8081 | ||
export RERANKER_HOST=131.151.90.37 | ||
export RERANKER_PORT=8082 | ||
export VECTORDB_HOST=131.151.90.37 | ||
export TGI_HOST=192.168.0.203 | ||
export TGI_PORT=80 | ||
export TEI_HOST=192.168.0.202 | ||
export TEI_PORT=80 | ||
export RERANKER_HOST=192.168.0.205 | ||
export RERANKER_PORT=80 | ||
export VECTORDB_HOST=192.168.0.204 | ||
export VECTORDB_PORT=8000 | ||
export STOP_TOKEN="<|endoftext|>" | ||
export HUGGINGFACEHUB_API_TOKEN="hf_token" | ||
export TAVILY_API_KEY="tavily_api_key" | ||
export STACK_OVERFLOW_API_KEY="stack_exchange_api_key" | ||
export PORTKEY_API_KEY="portkey_api_key" | ||
export HUGGINGFACEHUB_API_TOKEN="$(cat ~/.hf_token)" #Replace with your own Hugging Face API token | ||
export TAVILY_API_KEY="$(cat ~/.tavily_token)" #Replace with your own Tavily API key | ||
export STACK_OVERFLOW_API_KEY="$(cat ~/.stack_exchange_token)" #Replace with your own Stack Exchange API key | ||
export PORTKEY_API_KEY="portkey_api_key" #Replace with your own Portkey API key | ||
export PORTKEY_PROVIDER="llm_provider_name" | ||
export PORTKEY_CUSTOM_HOST="llm_provider_host_ip_and_port" #Only if LLM is locally hosted | ||
export USE_PORTKEY="0" | ||
export ENABLE_RERANKER="1" |