Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aakrem committed Apr 2, 2024
1 parent f90c3eb commit be5ba32
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/developer_guides/sdk/config_datatypes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ agenta.config.register_default(temperature = ag.IntParam(default=0.5, minval=0,
This displays a binary switch in the playground.


### MultipleChoiceParam


The MultipleChoiceParam is a dropdown menu that provides a list of individual choices.


### GroupedMultipleChoiceParam

The GroupedMultipleChoiceParam is a dropdown menu that presents options in clustered groups, allowing users to select from a categorized list of choices.
![Image of Evaluation Interface](/images/sdk_params/grouped_multiple_choice_param.png)

```python
agenta.config.register_default(temperature = ag.IntParam(default=0.5, minval=0, maxval=2),
force_json = BinaryParam())
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit be5ba32

Please sign in to comment.