Merge commit '71e7a5ca27' into add-support-for-custom-api-servers

This commit is contained in:
dmahan93 2025-05-12 18:40:35 -05:00
commit 96be544228
45 changed files with 1605 additions and 494 deletions

View file

@ -38,3 +38,6 @@ class APIServerConfig(ServerBaseline):
server_type: Literal["openai"] = Field(
default="openai", description="Type of server to use, openai or trl"
)
n_kwarg_is_ignored: bool = Field(
default=False, description="Whether the n kwarg is ignored by this API server."
)