Skip to content

Commit

Permalink
feat: add response_format to invocation parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerHYang committed Oct 31, 2024
1 parent 6330b20 commit 0ac67c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,7 @@ input InvocationParameters {
stop: [String!]
seed: Int
toolChoice: JSON
responseFormat: JSON
}

"""
Expand Down

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

1 change: 1 addition & 0 deletions src/phoenix/server/api/input_types/InvocationParameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ class InvocationParameters:
stop: Optional[list[str]] = UNSET
seed: Optional[int] = UNSET
tool_choice: Optional[JSON] = UNSET
response_format: Optional[JSON] = UNSET

0 comments on commit 0ac67c2

Please sign in to comment.