Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/euiyounghwang/python-fastapi-vector-search
python-fastapi-vector-search
https://github.com/euiyounghwang/python-fastapi-vector-search
circleci docker docker-compose faiss fastapi model orm pip poetry prometheus pytest shell-script sqlalchemy vector-search
Last synced: about 5 hours ago
JSON representation
python-fastapi-vector-search
- Host: GitHub
- URL: https://github.com/euiyounghwang/python-fastapi-vector-search
- Owner: euiyounghwang
- Created: 2023-08-22T20:40:11.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-27T03:17:26.000Z (9 months ago)
- Last Synced: 2024-02-27T04:26:34.882Z (9 months ago)
- Topics: circleci, docker, docker-compose, faiss, fastapi, model, orm, pip, poetry, prometheus, pytest, shell-script, sqlalchemy, vector-search
- Language: HTML
- Homepage:
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Python-Vector-Search Project based on Python-Fastapi
- We use Facebook AI Similarity Search (FAISS) to efficiently search for similar text (https://medium.com/loopio-tech/how-to-use-faiss-to-build-your-first-similarity-search-bf0f708aa772). Finding items that are similar is commonplace in many applications. Perhaps you want to find products in your store that match the description input by a customer. Or perhaps you want to find related keyword
- A vector or an embedding is a numerical representation of text data. For example, using an embedding framework, text like ‘name’ can be transformed into a numerical representation
- Semantic search consists of retrieving texts whose meaning matches a search query. For example, if your search query is “car,” the retrieved texts could include words such as “car,” “automobile,” “vehicle,” and so on. In contrast, keyword search only returns text passages with words of the search query.
- The results of a semantic search are the texts whose embeddings are most similar to the query's embedding (https://blog.dataiku.com/semantic-search-an-overlooked-nlp-superpower?ref=dylancastillo.co)
- Normalization is the process of transforming numerical data so that it uses a common scale.
- Reference : https://pytest-with-eric.com/pytest-advanced/pytest-fastapi-testing/### Install Tools
- Postgres
```
docker run --name postgres-local --network bridge -e POSTGRES_PASSWORD=1234 -p 15432:5432 -d postgres
```
- Elasticsearch/Kibana v8.
```
docker run --name kibaba-run --network bridge -e "ELASTICSEARCH_URL=http://host.docker.internal:9209" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" -e "ELASTICSEARCH_HOSTS=http://host.docker.internal:9209" -p 5801:5601 docker.elastic.co/kibana/kibana:8.8.0
docker run --name es8-run --network bridge -p 9209:9200 -p 9114:9114 -p 9309:9300 -e "http.cors.enabled=true" -e "http.cors.allow-origin=\"*\"" -e "http.cors.allow-headers=X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization" -e "http.cors.allow-credentials=true" -e "xpack.security.enabled=false" -e "discovery.type=single-node" -e "ES_JAVA_OPTS=-Xms2g -Xmx2g" docker.elastic.co/elasticsearch/elasticsearch:8.8.0
```
- RabbitMQ
```
docker run --name rabbitmq -e RABBITMQ_DEFAULT_USER=euiyoung.hwang -e RABBITMQ_DEFAULT_PASS=1234 -p 5672:5672 -p 15672:15672 -p 25672:25672 rabbitmq:3.12-management
- Ubutu Docker Install
sudo wget -qO- http://get.docker.com/ | sh (Install All-in-One) Othewise,
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
sudo echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
sudo docker version
sudo systemctl enable docker
sudo systemctl start docker
sudo systemctl enable containerd
sudo systemctl start containerd
```### REST API Realtime Performance using Prometheus
![Alt text](screenshot/image-6.png)### Flow
![Alt text](image.png)
- Controllers - Contains application logic and passing user input data to service
- Services - The middleware between controller and repository. Gather data from controller, performs validation and business logic, and calling repositories for data manipulation.
- Repositories - layer for interaction with models and performing DB operations
- Models - common laravel model files with relationships defined### Environment
- No module named 'sentence_transformers' based on Poetry on Python/.Venv Environment. So try to make an enviroment on Conda and builder Docker & Docker-compose.yml### Swagger for FAISS Model
- __Support Similarity Search using FAISS Model from trained sample datasets__
- I'll try to make it to REST API Endpoint with building /train, /reloading the model and search![Alt text](screenshot/image-3.png)
### Swagger for Elasticsearch
- __Support Enterprise Search using Elasticsearch Docker Instance__
![Alt text](screenshot/image-4.png)## Docker build
```
docker build \
-f "$(dirname "$0")/Dockerfile" \
-t fn-vector-search-api:test \
--target fta_test \
"$(dirname "$0")/."docker build \
-f "$(dirname "$0")/Dockerfile" \
-t fn-vector-search-api:es \
--target fta_runtime \
"$(dirname "$0")/."
```
![Alt text](screenshot/image.png)## Docker run
```
docker run --rm --platform linux/amd64 -it -d \
--name fn-vector-search-api --publish 7001:7000 --expose 7000 \
--network bridge \
-e DATABASE_URL=postgresql://postgres:[email protected]:15432/postgres \
-e ES_HOST=http://host.docker.internal:9209 \
-v "$SCRIPTDIR:/app/FN-FTA-Services/" \
fn-vector-search-api:es
```## services_start.sh for local env
```
#!/bin/bash
set -eSCRIPTDIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
cd $SCRIPTDIR
source .venv/bin/activate
uvicorn main:app --reload --port=7000 --workers 4
```
![Alt text](screenshot/image-1.png)## FastAPI with Swagger UI
```
Willing to build FAISS (Facebook AI Similarity Search) with train model to search for similar text
Build Model/Schema with Postgres
Build Search with Elasticsearch
```![Alt text](screenshot/image-5.png)