Skip to content

Commit

Permalink
chore: Default value for chat fields
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Sep 12, 2024
1 parent 7200fa7 commit 0fc374a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion argilla-server/src/argilla_server/api/schemas/v1/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ImageFieldSettingsUpdate(BaseModel):

class ChatFieldSettings(BaseModel):
type: Literal[FieldType.chat]
use_markdown: bool
use_markdown: bool = True # Just for dev purposes. Otherwise getting old datasets will fail


class ChatFieldSettingsCreate(BaseModel):
Expand Down

0 comments on commit 0fc374a

Please sign in to comment.