Skip to content

Commit

Permalink
runner: fix open api code gen, add llm to workflows and container list (
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-astra-video authored Dec 26, 2024
1 parent b81f898 commit 5237d5c
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 87 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ai-runner-pipelines-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- docker/Dockerfile.segment_anything_2
- docker/Dockerfile.text_to_speech
- docker/Dockerfile.audio_to_text
- docker/Dockerfile.llm
steps:
- name: Check out code
uses: actions/[email protected]
Expand Down
6 changes: 4 additions & 2 deletions runner/gateway.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,8 @@ components:
AudioResponse:
properties:
audio:
$ref: '#/components/schemas/MediaURL'
allOf:
- $ref: '#/components/schemas/MediaURL'
description: The generated audio.
type: object
required:
Expand Down Expand Up @@ -826,7 +827,8 @@ components:
HTTPError:
properties:
detail:
$ref: '#/components/schemas/APIError'
allOf:
- $ref: '#/components/schemas/APIError'
description: Detailed error information.
type: object
required:
Expand Down
6 changes: 4 additions & 2 deletions runner/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,8 @@ components:
AudioResponse:
properties:
audio:
$ref: '#/components/schemas/MediaURL'
allOf:
- $ref: '#/components/schemas/MediaURL'
description: The generated audio.
type: object
required:
Expand Down Expand Up @@ -918,7 +919,8 @@ components:
HTTPError:
properties:
detail:
$ref: '#/components/schemas/APIError'
allOf:
- $ref: '#/components/schemas/APIError'
description: Detailed error information.
type: object
required:
Expand Down
1 change: 1 addition & 0 deletions worker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ var pipelineToImage = map[string]string{
"segment-anything-2": "livepeer/ai-runner:segment-anything-2",
"text-to-speech": "livepeer/ai-runner:text-to-speech",
"audio-to-text": "livepeer/ai-runner:audio-to-text",
"llm": "livepeer/ai-runner:llm",
}

var livePipelineToImage = map[string]string{
Expand Down
166 changes: 83 additions & 83 deletions worker/runner.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5237d5c

Please sign in to comment.