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 vespa search threads #123

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions configuration_guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ Dimension of document embeddings, typically matching the chosen encoder model's
#### NORMALIZE_EMBEDDINGS
Set to `true` to enable normalization of embeddings.

#### VESPA_SEARCHER_THREADS
Specifies the number of threads for Vespa search operations. Affects search parallelism and performance.

#### ASYM_QUERY_PREFIX
Text prepended to queries in asymmetric semantic search.

Expand Down
9 changes: 5 additions & 4 deletions enterprise_edition/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ This variable allows you to start your Danswer instance with pre-configured opti
- `admin_user_emails`: List of email addresses for automatic admin role assignment
- `seeded_name`: Pre-set name for your Danswer instance
- `seeded_logo_path`: Path to your logo within the `assets` folder
- `enterprise_settings`: Object containing enterprise-specific settings, including:
- `custom_nav_items`: List of custom navigation items for the user dropdown menu. Each item requires:
- `title`: The text to display for the navigation item
- `link`: The URL the item should link to
- `icon`: The name of the icon to display (e.g., "Book", "Phone")

#### Usage Example

```bash
export ENV_SEED_CONFIGURATION='{"admin_user_emails": ["[email protected]"], "seeded_name": "Acme Corp", "seeded_logo_path": "assets/logo.png"}'
```

This configuration sets up admin email, instance name, and logo path.

### API_KEY_HASH_ROUNDS
Expand Down