KnowledgeBaseDetailMetrics

pydantic model openapi_client.models.knowledge_base_detail_metrics.KnowledgeBaseDetailMetrics

Aggregated source metrics. Included only for unstructured knowledge bases.

Fields:
field sources_attached: Optional[StrictInt] = None (alias 'SourcesAttached')

Number of sources attached to the knowledge base.

field files_scanned: Optional[StrictInt] = None (alias 'FilesScanned')

Number of files scanned during synchronization.

field files_deleted: Optional[StrictInt] = None (alias 'FilesDeleted')

Number of files deleted during synchronization.

field files_failed: Optional[StrictInt] = None (alias 'FilesFailed')

Number of files that failed to process during synchronization.

field metadata_files_scanned: Optional[StrictInt] = None (alias 'MetadataFilesScanned')

Number of metadata files scanned during synchronization.

field metadata_files_modified: Optional[StrictInt] = None (alias 'MetadataFilesModified')

Number of metadata files modified during synchronization.

field modified_files_indexed: Optional[StrictInt] = None (alias 'ModifiedFilesIndexed')

Number of files modified and indexed during synchronization.

field new_files_indexed: Optional[StrictInt] = None (alias 'NewFilesIndexed')

Number of new files indexed during synchronization.

to_str()

Returns the string representation of the model using alias

Return type:

str

to_json()

Returns the JSON representation of the model using alias

Return type:

str

classmethod from_json(json_str)

Create an instance of KnowledgeBaseDetailMetrics from a JSON string

Return type:

Optional[Self]

to_dict()

Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic’s self.model_dump(by_alias=True):

  • None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.

Return type:

Dict[str, Any]

classmethod from_dict(obj)

Create an instance of KnowledgeBaseDetailMetrics from a dict

Return type:

Optional[Self]