Skip to content

Commit

Permalink
Update environment variables in .envrc
Browse files Browse the repository at this point in the history
  • Loading branch information
AIWithShrey committed Jul 31, 2024
1 parent 45048b8 commit 0eff604
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .envrc
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"

0 comments on commit 0eff604

Please sign in to comment.