-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraph.py
45 lines (30 loc) · 1.14 KB
/
graph.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from typing import Optional
from datetime import datetime
from typing_extensions import Literal
from .._models import BaseModel
__all__ = ["Graph", "FileStatus"]
class FileStatus(BaseModel):
completed: int
"""The number of files that have been successfully processed."""
failed: int
"""The number of files that failed to process."""
in_progress: int
"""The number of files currently being processed."""
total: int
"""The total number of files associated with the Knowledge Graph."""
class Graph(BaseModel):
id: str
"""The unique identifier of the Knowledge Graph."""
created_at: datetime
"""The timestamp when the Knowledge Graph was created."""
file_status: FileStatus
name: str
"""The name of the Knowledge Graph."""
type: Literal["manual", "connector"]
"""
The type of Knowledge Graph, either `manual` (files are uploaded via UI or API)
or `connector` (files are uploaded via a connector).
"""
description: Optional[str] = None
"""A description of the Knowledge Graph."""