Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs on chat question configuration #5785

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions argilla/docs/reference/argilla-server/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ Redis is used by Argilla to store information about jobs to be processed on back

- `ARGILLA_SPAN_OPTIONS_MAX_ITEMS`: Set the number of maximum items to be allowed by span questions (Default: `500`).

- `ARGILLA_MIN_MESSAGE_LENGTH`: Set the minimum length of the message to be allowed in chat questions (Default: `1`).

- `ARGILLA_MAX_MESSAGE_LENGTH`: Set the maximum length of the message to be allowed in chat questions (Default: `20000`).

- `ARGILLA_MIN_ROLE_LENGTH`: Set the minimum length of the role to be allowed in chat questions (Default: `1`).

- `ARGILLA_MAX_ROLE_LENGTH`: Set the maximum length of the role to be allowed in chat questions (Default: `20`).

### Hugging Face

- `ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING`: When Argilla is running on Hugging Face Spaces you can use this environment variable to disable the warning message showed when persistent storage is disabled for the space (Default: `true`).
Expand Down
Loading