first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 21:52:23 +03:00
commit 880f412e2c
2662 changed files with 866266 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# Common schemas used across management APIs
SuccessResponse:
type: object
description: Generic success response
properties:
status:
type: string
example: success
message:
type: string
example: Operation completed successfully
ErrorResponse:
type: object
description: Error response
$ref: '../../schemas/inference/common.yaml#/BifrostError'
MessageResponse:
type: object
description: Simple message response
properties:
message:
type: string
EnvVar:
type: object
description: Environment variable configuration
properties:
value:
type: string
env_var:
type: string
from_env:
type: boolean