修改为东南天坐标系
This commit is contained in:
@@ -40,6 +40,7 @@ from chromadb.api.types import (
|
||||
Embeddings,
|
||||
Metadatas,
|
||||
Documents,
|
||||
ReadLevel,
|
||||
Schema,
|
||||
URIs,
|
||||
Where,
|
||||
@@ -432,6 +433,15 @@ class SegmentAPI(ServerAPI):
|
||||
"Collection forking is not implemented for SegmentAPI"
|
||||
)
|
||||
|
||||
@override
|
||||
def _get_indexing_status(
|
||||
self,
|
||||
collection_id: UUID,
|
||||
tenant: str = DEFAULT_TENANT,
|
||||
database: str = DEFAULT_DATABASE,
|
||||
) -> "IndexingStatus":
|
||||
raise NotImplementedError("Indexing status is not implemented for SegmentAPI")
|
||||
|
||||
@override
|
||||
def _search(
|
||||
self,
|
||||
@@ -439,6 +449,7 @@ class SegmentAPI(ServerAPI):
|
||||
searches: List[Search],
|
||||
tenant: str = DEFAULT_TENANT,
|
||||
database: str = DEFAULT_DATABASE,
|
||||
read_level: ReadLevel = ReadLevel.INDEX_AND_WAL,
|
||||
) -> SearchResult:
|
||||
raise NotImplementedError("Search is not implemented for SegmentAPI")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user