-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph_query.json
More file actions
54 lines (54 loc) · 1.41 KB
/
Copy pathgraph_query.json
File metadata and controls
54 lines (54 loc) · 1.41 KB
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
46
47
48
49
50
51
52
53
54
{
"type": "function",
"function": {
"name": "graph_query",
"description": "NL→SQL graph orkestratörüyle soruyu çözer; uygun tabloyu, SQL'i ve satır önizlemesini üretir.",
"parameters": {
"properties": {
"question": {
"description": "Kullanıcının doğal dilde sorusu.",
"title": "Question",
"type": "string"
},
"preview_rows": {
"default": 100,
"description": "Önizleme olarak döndürülecek satır adedi.",
"maximum": 2000,
"minimum": 1,
"title": "Preview Rows",
"type": "integer"
},
"return_rows": {
"default": true,
"description": "Satır önizlemesini döndür.",
"title": "Return Rows",
"type": "boolean"
},
"return_chart": {
"default": false,
"description": "Grafik spec (varsa) döndür.",
"title": "Return Chart",
"type": "boolean"
},
"session_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "İstemci oturum ID (izleme için).",
"title": "Session Id"
}
},
"required": [
"question"
],
"title": "GraphQueryParams",
"type": "object"
}
}
}