You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/openapi.json
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,15 @@
63
63
}
64
64
},
65
65
"name": "Service name",
66
-
"version": "Service version"
66
+
"service_version": "Service version",
67
+
"llama_stack_version": "Llama Stack version"
68
+
},
69
+
"500": {
70
+
"description": "Internal Server Error",
71
+
"detail": {
72
+
"response": "Unable to connect to Llama Stack",
73
+
"cause": "Connection error."
74
+
}
67
75
}
68
76
}
69
77
}
@@ -1606,28 +1614,40 @@
1606
1614
"Lightspeed Stack"
1607
1615
]
1608
1616
},
1609
-
"version": {
1617
+
"service_version": {
1610
1618
"type": "string",
1611
-
"title": "Version",
1619
+
"title": "Service Version",
1612
1620
"description": "Service version",
1613
1621
"examples": [
1614
1622
"0.1.0",
1615
1623
"0.2.0",
1616
1624
"1.0.0"
1617
1625
]
1626
+
},
1627
+
"llama_stack_version": {
1628
+
"type": "string",
1629
+
"title": "Llama Stack Version",
1630
+
"description": "Llama Stack version",
1631
+
"examples": [
1632
+
"0.2.1",
1633
+
"0.2.2",
1634
+
"0.2.18"
1635
+
]
1618
1636
}
1619
1637
},
1620
1638
"type": "object",
1621
1639
"required": [
1622
1640
"name",
1623
-
"version"
1641
+
"service_version",
1642
+
"llama_stack_version"
1624
1643
],
1625
1644
"title": "InfoResponse",
1626
-
"description": "Model representing a response to an info request.\n\nAttributes:\n name: Service name.\nversion: Service version.\n\nExample:\n ```python\n info_response = InfoResponse(\n name=\"Lightspeed Stack\",\nversion=\"1.0.0\",\n )\n ```",
1645
+
"description": "Model representing a response to an info request.\n\nAttributes:\n name: Service name.\nservice_version: Service version.\n llama_stack_version: Llama Stack version.\n\nExample:\n ```python\n info_response = InfoResponse(\n name=\"Lightspeed Stack\",\nservice_version=\"1.0.0\",\n llama_stack_version=\"0.2.18\",\n )\n ```",
0 commit comments