Skip to content

Commit

Permalink
added schema models for indexer service
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavbhuva authored Aug 7, 2024
1 parent ad8acc8 commit c90640d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jb-lib/lib/data_models/indexer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from typing import List
from pydantic import BaseModel

class IndexerInput(BaseModel):
collection_name: str
files: List[str]

0 comments on commit c90640d

Please sign in to comment.