Skip to content

Commit

Permalink
regenerate bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
kyriediculous committed Jan 2, 2025
1 parent 8d1815c commit c3f347b
Show file tree
Hide file tree
Showing 3 changed files with 134 additions and 94 deletions.
22 changes: 19 additions & 3 deletions runner/gateway.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ components:
finish_reason:
type: string
title: Finish Reason
nullable: true
default: ''
type: object
required:
- delta
Expand Down Expand Up @@ -938,8 +938,7 @@ components:
type: array
title: Choices
tokens_used:
type: integer
title: Tokens Used
$ref: '#/components/schemas/LLMTokenUsage'
id:
type: string
title: Id
Expand All @@ -957,6 +956,23 @@ components:
- model
- created
title: LLMResponse
LLMTokenUsage:
properties:
prompt_tokens:
type: integer
title: Prompt Tokens
completion_tokens:
type: integer
title: Completion Tokens
total_tokens:
type: integer
title: Total Tokens
type: object
required:
- prompt_tokens
- completion_tokens
- total_tokens
title: LLMTokenUsage
LiveVideoToVideoParams:
properties:
subscribe_url:
Expand Down
22 changes: 19 additions & 3 deletions runner/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ components:
finish_reason:
type: string
title: Finish Reason
nullable: true
default: ''
type: object
required:
- delta
Expand Down Expand Up @@ -1084,8 +1084,7 @@ components:
type: array
title: Choices
tokens_used:
type: integer
title: Tokens Used
$ref: '#/components/schemas/LLMTokenUsage'
id:
type: string
title: Id
Expand All @@ -1103,6 +1102,23 @@ components:
- model
- created
title: LLMResponse
LLMTokenUsage:
properties:
prompt_tokens:
type: integer
title: Prompt Tokens
completion_tokens:
type: integer
title: Completion Tokens
total_tokens:
type: integer
title: Total Tokens
type: object
required:
- prompt_tokens
- completion_tokens
- total_tokens
title: LLMTokenUsage
LiveVideoToVideoParams:
properties:
subscribe_url:
Expand Down
184 changes: 96 additions & 88 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 c3f347b

Please sign in to comment.