Skip to content

Commit e1c09c3

Browse files
authored
Merge pull request #275 from tisnik/lcore-380-regenerated-schema
LCORE-380: regenerated schema
2 parents 3e7e289 + fc90c5b commit e1c09c3

File tree

1 file changed

+44
-22
lines changed

1 file changed

+44
-22
lines changed

docs/openapi.json

Lines changed: 44 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,28 @@
593593
}
594594
}
595595
}
596+
},
597+
"/metrics": {
598+
"get": {
599+
"tags": [
600+
"metrics"
601+
],
602+
"summary": "Metrics Endpoint Handler",
603+
"description": "Handle request to the /metrics endpoint.",
604+
"operationId": "metrics_endpoint_handler_metrics_get",
605+
"responses": {
606+
"200": {
607+
"description": "Successful Response",
608+
"content": {
609+
"text/plain": {
610+
"schema": {
611+
"type": "string"
612+
}
613+
}
614+
}
615+
}
616+
}
617+
}
596618
}
597619
},
598620
"components": {
@@ -715,7 +737,7 @@
715737
"$ref": "#/components/schemas/ServiceConfiguration"
716738
},
717739
"llama_stack": {
718-
"$ref": "#/components/schemas/LLamaStackConfiguration"
740+
"$ref": "#/components/schemas/LlamaStackConfiguration"
719741
},
720742
"user_data_collection": {
721743
"$ref": "#/components/schemas/UserDataCollection"
@@ -1071,7 +1093,26 @@
10711093
}
10721094
]
10731095
},
1074-
"LLamaStackConfiguration": {
1096+
"LivenessResponse": {
1097+
"properties": {
1098+
"alive": {
1099+
"type": "boolean",
1100+
"title": "Alive"
1101+
}
1102+
},
1103+
"type": "object",
1104+
"required": [
1105+
"alive"
1106+
],
1107+
"title": "LivenessResponse",
1108+
"description": "Model representing a response to a liveness request.\n\nAttributes:\n alive: If app is alive.\n\nExample:\n ```python\n liveness_response = LivenessResponse(alive=True)\n ```",
1109+
"examples": [
1110+
{
1111+
"alive": true
1112+
}
1113+
]
1114+
},
1115+
"LlamaStackConfiguration": {
10751116
"properties": {
10761117
"url": {
10771118
"anyOf": [
@@ -1119,28 +1160,9 @@
11191160
}
11201161
},
11211162
"type": "object",
1122-
"title": "LLamaStackConfiguration",
1163+
"title": "LlamaStackConfiguration",
11231164
"description": "Llama stack configuration."
11241165
},
1125-
"LivenessResponse": {
1126-
"properties": {
1127-
"alive": {
1128-
"type": "boolean",
1129-
"title": "Alive"
1130-
}
1131-
},
1132-
"type": "object",
1133-
"required": [
1134-
"alive"
1135-
],
1136-
"title": "LivenessResponse",
1137-
"description": "Model representing a response to a liveness request.\n\nAttributes:\n alive: If app is alive.\n\nExample:\n ```python\n liveness_response = LivenessResponse(alive=True)\n ```",
1138-
"examples": [
1139-
{
1140-
"alive": true
1141-
}
1142-
]
1143-
},
11441166
"ModelContextProtocolServer": {
11451167
"properties": {
11461168
"name": {

0 commit comments

Comments
 (0)