├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── data └── FEIDEGGER_release_1.2.json ├── rdspg-vector.ipynb ├── src ├── cfn │ └── sagemaker-rdspg.yaml └── scripts │ └── install_pg.sh └── static └── architecture.png /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/README.md -------------------------------------------------------------------------------- /data/FEIDEGGER_release_1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/data/FEIDEGGER_release_1.2.json -------------------------------------------------------------------------------- /rdspg-vector.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/rdspg-vector.ipynb -------------------------------------------------------------------------------- /src/cfn/sagemaker-rdspg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/src/cfn/sagemaker-rdspg.yaml -------------------------------------------------------------------------------- /src/scripts/install_pg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo amazon-linux-extras install postgresql13 4 | -------------------------------------------------------------------------------- /static/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/rds-postgresql-pgvector/HEAD/static/architecture.png --------------------------------------------------------------------------------