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,174 @@
# AWS Bedrock - Batch Inference Endpoints
batch-jobs:
post:
operationId: bedrockCreateBatchJob
summary: Create batch inference job (Bedrock format)
description: |
Creates a batch inference job using AWS Bedrock format.
tags:
- Bedrock Integration
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/batch.yaml#/BedrockBatchJobRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/batch.yaml#/BedrockBatchJobResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []
get:
operationId: bedrockListBatchJobs
summary: List batch inference jobs (Bedrock format)
description: |
Lists batch inference jobs using AWS Bedrock format.
tags:
- Bedrock Integration
parameters:
- name: maxResults
in: query
schema:
type: integer
description: Maximum number of results to return
- name: nextToken
in: query
schema:
type: string
description: Token for pagination
- name: statusEquals
in: query
schema:
type: string
enum: [Submitted, InProgress, Completed, Failed, Stopping, Stopped, PartiallyCompleted, Expired, Validating,
Scheduled]
description: Filter by status
- name: nameContains
in: query
schema:
type: string
description: Filter by job name containing this string
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/batch.yaml#/BedrockBatchListResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []
batch-job-by-id:
get:
operationId: bedrockRetrieveBatchJob
summary: Retrieve batch inference job (Bedrock format)
description: |
Retrieves a batch inference job using AWS Bedrock format.
tags:
- Bedrock Integration
parameters:
- name: jobIdentifier
in: path
required: true
schema:
type: string
description: Job identifier
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/batch.yaml#/BedrockBatchJobResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []
batch-job-cancel:
post:
operationId: bedrockCancelBatchJob
summary: Cancel batch inference job (Bedrock format)
description: |
Cancels a batch inference job using AWS Bedrock format.
tags:
- Bedrock Integration
parameters:
- name: jobIdentifier
in: path
required: true
schema:
type: string
description: Job identifier to cancel
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/batch.yaml#/BedrockBatchCancelResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []

View File

@@ -0,0 +1,93 @@
# AWS Bedrock - Converse Endpoints
converse:
post:
operationId: bedrockConverse
summary: Converse with model (Bedrock format)
description: |
Sends messages to a model using AWS Bedrock Converse API format.
tags:
- Bedrock Integration
parameters:
- name: modelId
in: path
required: true
schema:
type: string
description: Model ID (e.g., anthropic.claude-3-sonnet-20240229-v1:0)
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/converse.yaml#/BedrockConverseRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/converse.yaml#/BedrockConverseResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []
converse-stream:
post:
operationId: bedrockConverseStream
summary: Stream converse with model (Bedrock format)
description: |
Streams messages from a model using AWS Bedrock Converse API format.
tags:
- Bedrock Integration
parameters:
- name: modelId
in: path
required: true
schema:
type: string
description: Model ID (e.g., anthropic.claude-3-sonnet-20240229-v1:0)
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/converse.yaml#/BedrockConverseRequest'
responses:
'200':
description: Successful streaming response
content:
application/x-amz-eventstream:
schema:
$ref: '../../../schemas/integrations/bedrock/converse.yaml#/BedrockStreamEvent'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []

View File

@@ -0,0 +1,95 @@
# AWS Bedrock - Invoke Endpoints
invoke:
post:
operationId: bedrockInvokeModel
summary: Invoke model (Bedrock format)
description: |
Invokes a model using AWS Bedrock InvokeModel API format.
Accepts raw model-specific request body.
tags:
- Bedrock Integration
parameters:
- name: modelId
in: path
required: true
schema:
type: string
description: Model ID (e.g., anthropic.claude-3-sonnet-20240229-v1:0)
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/invoke.yaml#/BedrockInvokeRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/invoke.yaml#/BedrockInvokeResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []
invoke-stream:
post:
operationId: bedrockInvokeModelStream
summary: Invoke model with streaming (Bedrock format)
description: |
Invokes a model with streaming using AWS Bedrock InvokeModelWithResponseStream API format.
tags:
- Bedrock Integration
parameters:
- name: modelId
in: path
required: true
schema:
type: string
description: Model ID (e.g., anthropic.claude-3-sonnet-20240229-v1:0)
requestBody:
required: true
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/invoke.yaml#/BedrockInvokeRequest'
responses:
'200':
description: Successful streaming response
content:
application/x-amz-eventstream:
schema:
type: object
description: AWS event stream format
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/bedrock/common.yaml#/BedrockError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []