-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_prostate_biopsies.json
41 lines (41 loc) · 1023 Bytes
/
get_prostate_biopsies.json
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
{
"type": "function",
"function": {
"name": "get_prostate_biopsies",
"description": "Provide details about each biopsy in the report. ",
"parameters": {
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "A letter identifying the biopsy"
},
"gleason_score": {
"type": "string",
"description": "Gleason score of the biopsy"
},
"biopsy_length": {
"type": "number",
"description": "Length of the entire biopsy core in cm"
},
"cancer_length": {
"type": "number",
"description": "Length of the cancer within the biopsy core"
},
"diagnosis": {
"type": "string",
"description": "Diagnosis of the biopsy",
"enum": [
"benign",
"malignant"
]
}
},
"required": [
"label",
"gleason_score",
"diagnosis"
]
}
}
}