File tree 3 files changed +90
-4
lines changed
3 files changed +90
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ groups:
33
33
- from : _legacy
34
34
imports :
35
35
- Client
36
- pyproject_python_version : ' ^3.9'
36
+ # pyproject_python_version: '^3.9'
37
37
extra_dependencies :
38
38
pandas : ' >=0.24.0'
39
39
requests : ' >=2.22.0'
@@ -44,9 +44,9 @@ groups:
44
44
appdirs : ' >=1.4.3'
45
45
lxml : ' >=4.2.5'
46
46
xmljson : ' 0.2.1'
47
- jsonschema : ' 3.2 .0'
47
+ jsonschema : ' >=4.23 .0'
48
48
requests-mock : ' 1.12.1'
49
- scikit-learn : ' 1.5.1'
49
+ # scikit-learn: '1.5.1'
50
50
smart-casing : true
51
51
python-sdk-local :
52
52
audiences :
Original file line number Diff line number Diff line change @@ -12,6 +12,25 @@ paths:
12
12
x-fern-sdk-method-name : create
13
13
x-fern-audiences :
14
14
- public
15
+ /api/comments/{id} :
16
+ get :
17
+ $ref : " ./resources/comments.yaml#/paths/~1api~1comments~1{id}/get"
18
+ x-fern-sdk-group-name : comments
19
+ x-fern-sdk-method-name : get
20
+ x-fern-audiences :
21
+ - public
22
+ patch :
23
+ $ref : " ./resources/comments.yaml#/paths/~1api~1comments~1{id}/patch"
24
+ x-fern-sdk-group-name : comments
25
+ x-fern-sdk-method-name : update
26
+ x-fern-audiences :
27
+ - public
28
+ delete :
29
+ $ref : " ./resources/comments.yaml#/paths/~1api~1comments~1{id}/delete"
30
+ x-fern-sdk-group-name : comments
31
+ x-fern-sdk-method-name : delete
32
+ x-fern-audiences :
33
+ - public
15
34
" /api/annotations/{id}/ " :
16
35
get :
17
36
summary : Get annotation by its ID
@@ -2687,6 +2706,11 @@ components:
2687
2706
title : workspace
2688
2707
description : Workspace ID
2689
2708
type : integer
2709
+ model_version :
2710
+ title : model_version
2711
+ description : Model version
2712
+ type : string
2713
+ example : 1.0
2690
2714
required : true
2691
2715
2692
2716
api_workspaces_createData :
@@ -2720,4 +2744,8 @@ components:
2720
2744
description : Workspace color in HEX format
2721
2745
type : string
2722
2746
default : " #FFFFFF"
2747
+ is_archived :
2748
+ title : is_archived
2749
+ description : Is workspace archived
2750
+ type : boolean
2723
2751
required : true
Original file line number Diff line number Diff line change @@ -49,7 +49,62 @@ paths:
49
49
application/json :
50
50
schema :
51
51
$ref : " #/components/schemas/Comment"
52
-
52
+ /api/comments/{id} :
53
+ get :
54
+ summary : Get comment
55
+ description : >
56
+
57
+ Get a specific comment.
58
+ parameters :
59
+ - name : id
60
+ in : path
61
+ description : Comment ID
62
+ required : true
63
+ schema :
64
+ type : integer
65
+ responses :
66
+ " 200 " :
67
+ description : " "
68
+ content :
69
+ application/json :
70
+ schema :
71
+ $ref : " #/components/schemas/Comment"
72
+ patch :
73
+ summary : Update comment
74
+ description : >
75
+
76
+ Update a specific comment.
77
+ parameters :
78
+ - name : id
79
+ in : path
80
+ description : Comment ID
81
+ required : true
82
+ schema :
83
+ type : integer
84
+ requestBody :
85
+ $ref : " #/components/requestBodies/api_comments_create"
86
+ responses :
87
+ " 200 " :
88
+ description : " "
89
+ content :
90
+ application/json :
91
+ schema :
92
+ $ref : " #/components/schemas/Comment"
93
+ delete :
94
+ summary : Delete comment
95
+ description : >
96
+
97
+ Delete a specific comment.
98
+ parameters :
99
+ - name : id
100
+ in : path
101
+ description : Comment ID
102
+ required : true
103
+ schema :
104
+ type : integer
105
+ responses :
106
+ " 204 " :
107
+ description : " "
53
108
54
109
components :
55
110
schemas :
@@ -116,3 +171,6 @@ components:
116
171
text :
117
172
title : Comment message
118
173
type : string
174
+ is_resolved :
175
+ title : Is comment resolved
176
+ type : boolean
You can’t perform that action at this time.
0 commit comments