mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-14 08:52:37 +00:00
feat: Add support for Conversatsions in Responses API
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
parent
548ccff368
commit
1e59793288
18 changed files with 662 additions and 10 deletions
4
docs/static/deprecated-llama-stack-spec.html
vendored
4
docs/static/deprecated-llama-stack-spec.html
vendored
|
|
@ -10083,6 +10083,10 @@
|
|||
"type": "string",
|
||||
"description": "(Optional) if specified, the new response will be a continuation of the previous response. This can be used to easily fork-off new responses from existing responses."
|
||||
},
|
||||
"conversation": {
|
||||
"type": "string",
|
||||
"description": "(Optional) The ID of a conversation to add the response to. Must begin with 'conv_'. Input and output messages will be automatically added to the conversation."
|
||||
},
|
||||
"store": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
|
|
|||
6
docs/static/deprecated-llama-stack-spec.yaml
vendored
6
docs/static/deprecated-llama-stack-spec.yaml
vendored
|
|
@ -7493,6 +7493,12 @@ components:
|
|||
(Optional) if specified, the new response will be a continuation of the
|
||||
previous response. This can be used to easily fork-off new responses from
|
||||
existing responses.
|
||||
conversation:
|
||||
type: string
|
||||
description: >-
|
||||
(Optional) The ID of a conversation to add the response to. Must begin
|
||||
with 'conv_'. Input and output messages will be automatically added to
|
||||
the conversation.
|
||||
store:
|
||||
type: boolean
|
||||
stream:
|
||||
|
|
|
|||
4
docs/static/llama-stack-spec.html
vendored
4
docs/static/llama-stack-spec.html
vendored
|
|
@ -8178,6 +8178,10 @@
|
|||
"type": "string",
|
||||
"description": "(Optional) if specified, the new response will be a continuation of the previous response. This can be used to easily fork-off new responses from existing responses."
|
||||
},
|
||||
"conversation": {
|
||||
"type": "string",
|
||||
"description": "(Optional) The ID of a conversation to add the response to. Must begin with 'conv_'. Input and output messages will be automatically added to the conversation."
|
||||
},
|
||||
"store": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
|
|
|||
6
docs/static/llama-stack-spec.yaml
vendored
6
docs/static/llama-stack-spec.yaml
vendored
|
|
@ -6189,6 +6189,12 @@ components:
|
|||
(Optional) if specified, the new response will be a continuation of the
|
||||
previous response. This can be used to easily fork-off new responses from
|
||||
existing responses.
|
||||
conversation:
|
||||
type: string
|
||||
description: >-
|
||||
(Optional) The ID of a conversation to add the response to. Must begin
|
||||
with 'conv_'. Input and output messages will be automatically added to
|
||||
the conversation.
|
||||
store:
|
||||
type: boolean
|
||||
stream:
|
||||
|
|
|
|||
4
docs/static/stainless-llama-stack-spec.html
vendored
4
docs/static/stainless-llama-stack-spec.html
vendored
|
|
@ -10187,6 +10187,10 @@
|
|||
"type": "string",
|
||||
"description": "(Optional) if specified, the new response will be a continuation of the previous response. This can be used to easily fork-off new responses from existing responses."
|
||||
},
|
||||
"conversation": {
|
||||
"type": "string",
|
||||
"description": "(Optional) The ID of a conversation to add the response to. Must begin with 'conv_'. Input and output messages will be automatically added to the conversation."
|
||||
},
|
||||
"store": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
|
|
|||
6
docs/static/stainless-llama-stack-spec.yaml
vendored
6
docs/static/stainless-llama-stack-spec.yaml
vendored
|
|
@ -7634,6 +7634,12 @@ components:
|
|||
(Optional) if specified, the new response will be a continuation of the
|
||||
previous response. This can be used to easily fork-off new responses from
|
||||
existing responses.
|
||||
conversation:
|
||||
type: string
|
||||
description: >-
|
||||
(Optional) The ID of a conversation to add the response to. Must begin
|
||||
with 'conv_'. Input and output messages will be automatically added to
|
||||
the conversation.
|
||||
store:
|
||||
type: boolean
|
||||
stream:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue