@@ -230,9 +230,10 @@ def get_parameters(
230
230
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
231
231
) -> ModelParameters :
232
232
"""
233
- Fetches the model configuration parameters for a specified prompt, including
234
- penalty settings, response format, and the model messages rendered with the
235
- given variables mapped to the set LLM provider.
233
+ Fetches the configured model parameters and messages rendered with the provided
234
+ variables mapped to the set LLM provider. This endpoint abstracts the need to
235
+ handle mapping between different providers, while still allowing direct calls to
236
+ the providers.
236
237
237
238
Args:
238
239
append_messages: Appended the the end of the configured prompt messages before running the
@@ -477,9 +478,10 @@ async def get_parameters(
477
478
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
478
479
) -> ModelParameters :
479
480
"""
480
- Fetches the model configuration parameters for a specified prompt, including
481
- penalty settings, response format, and the model messages rendered with the
482
- given variables mapped to the set LLM provider.
481
+ Fetches the configured model parameters and messages rendered with the provided
482
+ variables mapped to the set LLM provider. This endpoint abstracts the need to
483
+ handle mapping between different providers, while still allowing direct calls to
484
+ the providers.
483
485
484
486
Args:
485
487
append_messages: Appended the the end of the configured prompt messages before running the
0 commit comments