From b0d164c79f984391ee0339cb524b2753496e5ab1 Mon Sep 17 00:00:00 2001 From: Siraj R Aizlewood <siraj@aurelio.ai> Date: Tue, 6 Feb 2024 23:40:00 +0400 Subject: [PATCH] Added Explanation about Base Class Being a Placeholder --- semantic_router/indices/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/semantic_router/indices/base.py b/semantic_router/indices/base.py index bfaa903e..7b48f65d 100644 --- a/semantic_router/indices/base.py +++ b/semantic_router/indices/base.py @@ -1,4 +1,5 @@ from pydantic.v1 import BaseModel class BaseIndex(BaseModel): + # Currently just a placedholder until more indexing methods are added and common attributes/methods are identified. pass \ No newline at end of file -- GitLab