more linting

This commit is contained in:
Brandon Hancock
2024-12-05 14:15:49 -05:00
parent 514f7d3abe
commit 55e4ab68a3

View File

@@ -17,6 +17,7 @@ class BaseKnowledgeSource(BaseModel, ABC):
model_config = ConfigDict(arbitrary_types_allowed=True)
storage: KnowledgeStorage = Field(default_factory=KnowledgeStorage)
metadata: Dict[str, Any] = Field(default_factory=dict) # Currently unused
collection_name: Optional[str] = Field(default=None)
@abstractmethod