- Make sure that you have set up
AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
in .aws
directory within credentials
file
- Go to Amazon Bedrock Console's model access section to request an access for models
- After cloning the repository, run
cd aws_bedrock
- Run
export PYTHONPATH=$PYTHONPATH:$(pwd)/src
- Then, run
chmod +x run.sh
- Using
pyenv
set up your python version above 3.11 e.g. pyenv local 3.11.5
- Run the following command to install project dependencies
poetry env use $(pyenv which python)
poetry install
- Afterwards, to activate virtual env run
poetry shell
How to get demo applications up and running
- Set env for Tavily Search and Nubela in
.env
file, check the naming convention from .env.example
file
- Run
./run.sh building_bonds
- Set HuggingFace API Token in
.env
- Run
./run.sh ingredient_to_recipe
- Spin up Postgres container with pgvector extension
docker run --name pgvector-container -e POSTGRES_USER=russ -e POSTGRES_PASSWORD=russ -e POSTGRES_DB=resume_screener -p 6024:5432 -d pgvector/pgvector:pg16
- Run
./run.sh resume_screening