Skip to main content

Show how to deploy Semantic Search as an API with FastAPI or Flask?

 

Deploy Semantic Search as an API with FastAPI

Let's build a Semantic Search API using FastAPI + FAISS + Sentence Transformers.


Install Required Libraries

pip install fastapi uvicorn sentence-transformers faiss-cpu

1. Folder Structure

semantic_search_api/
│
├─ main.py              # FastAPI app
├─ model.py             # Embedding + FAISS setup
└─ requirements.txt      # Dependencies

2. Model Setup (model.py)

Initialize Sentence Transformers and FAISS index.

from sentence_transformers import SentenceTransformer
import faiss
import numpy as np

# Load Sentence Transformer Model
model = SentenceTransformer('sentence-transformers/all-MiniLM-L6-v2')

# Sample Documents
documents = [
    "I love playing football.",
    "Artificial Intelligence is the future.",
    "Machine learning powers AI.",
    "The weather is sunny today.",
    "Deep learning improves neural networks.",
    "It's raining outside."
]

# Generate Embeddings
document_embeddings = model.encode(documents)

# Normalize embeddings for cosine similarity
faiss.normalize_L2(document_embeddings)

# Create FAISS Index
embedding_dimension = document_embeddings.shape[1]
index = faiss.IndexFlatIP(embedding_dimension)  # Inner Product (Cosine Similarity)
index.add(document_embeddings)

3. API Setup (main.py)

Create the FastAPI app.

from fastapi import FastAPI
from pydantic import BaseModel
from model import model, index, documents
import faiss
import numpy as np

app = FastAPI()

class Query(BaseModel):
    text: str
    top_k: int = 3

@app.get("/")
def read_root():
    return {"message": "Semantic Search API is running 🚀"}

@app.post("/search")
def search(query: Query):
    # Generate Query Embedding
    query_embedding = model.encode([query.text])

    # Normalize for Cosine Similarity
    faiss.normalize_L2(query_embedding)

    # Search FAISS Index
    distances, indices = index.search(query_embedding, query.top_k)

    results = []
    for i in range(query.top_k):
        results.append({
            "document": documents[indices[0][i]],
            "distance": float(distances[0][i])
        })

    return {"query": query.text, "results": results}

4. Run the API

uvicorn main:app --reload

API Endpoints

Method Endpoint Description
GET / Health check
POST /search Perform Semantic Search

5. Test with Postman or Curl

Request:

POST /search
Content-Type: application/json

{
  "text": "Future of AI technology",
  "top_k": 3
}

Response:

{
  "query": "Future of AI technology",
  "results": [
    {
      "document": "Artificial Intelligence is the future.",
      "distance": 0.9823
    },
    {
      "document": "Machine learning powers AI.",
      "distance": 0.9745
    },
    {
      "document": "Deep learning improves neural networks.",
      "distance": 0.9634
    }
  ]
}

Bonus Tip:

If you need vector persistence between restarts, you can save and load FAISS indexes:

faiss.write_index(index, "faiss_index.bin")
index = faiss.read_index("faiss_index.bin")

Conclusion 🎯

FastAPI + FAISS + Sentence Transformers gives you a blazing-fast Semantic Search API.


Comments

Popular posts from this blog

Simple Linear Regression - and Related Regression Loss Functions

Today's Topics: a. Regression Algorithms  b. Outliers - Explained in Simple Terms c. Common Regression Metrics Explained d. Overfitting and Underfitting e. How are Linear and Non Linear Regression Algorithms used in Neural Networks [Future study topics] Regression Algorithms Regression algorithms are a category of machine learning methods used to predict a continuous numerical value. Linear regression is a simple, powerful, and interpretable algorithm for this type of problem. Quick Example: These are the scores of students vs. the hours they spent studying. Looking at this dataset of student scores and their corresponding study hours, can we determine what score someone might achieve after studying for a random number of hours? Example: From the graph, we can estimate that 4 hours of daily study would result in a score near 80. It is a simple example, but for more complex tasks the underlying concept will be similar. If you understand this graph, you will understand this blog. Sim...

What problems can AI Neural Networks solve

How does AI Neural Networks solve Problems? What problems can AI Neural Networks solve? Based on effectiveness and common usage, here's the ranking from best to least suitable for neural networks (Classification Problems, Regression Problems and Optimization Problems.) But first some Math, background and related topics as how the Neural Network Learn by training (Supervised Learning and Unsupervised Learning.)  Background Note - Mathematical Precision vs. Practical AI Solutions. Math can solve all these problems with very accurate results. While Math can theoretically solve classification, regression, and optimization problems with perfect accuracy, such calculations often require impractical amounts of time—hours, days, or even years for complex real-world scenarios. In practice, we rarely need absolute precision; instead, we need actionable results quickly enough to make timely decisions. Neural networks excel at this trade-off, providing "good enough" solutions in seco...

Activation Functions in Neural Networks

  A Guide to Activation Functions in Neural Networks 🧠 Question: Without activation function can a neural network with many layers be non-linear? Answer: Provided at the end of this document. Activation functions are a crucial component of neural networks. Their primary purpose is to introduce non-linearity , which allows the network to learn the complex, winding patterns found in real-world data. Without them, a neural network, no matter how deep, would just be a simple linear model. In the diagram below the f is the activation function that receives input and send output to next layers. Commonly used activation functions. 1. Sigmoid Function 2. Tanh (Hyperbolic Tangent) 3. ReLU (Rectified Linear Unit - Like an Electronic Diode) 4. Leaky ReLU & PReLU 5. ELU (Exponential Linear Unit) 6. Softmax 7. GELU, Swish, and SiLU 1. Sigmoid Function                       The classic "S-curve," Sigmoid squashes any input value t...