-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ability to order assistants by supported id's first in the …
…order they're listed
- Loading branch information
1 parent
44b7bf3
commit f45c0e4
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ interface: | |
If you have any questions about these Terms, please contact us at [email protected]. | ||
By using the Website, you acknowledge that you have read these Terms of Service and agree to be bound by them. | ||
# Example Registration Object Structure (optional) | ||
registration: | ||
socialLogins: ['github', 'google', 'discord', 'openid', 'facebook'] | ||
|
@@ -71,7 +71,7 @@ registration: | |
# model: '' | ||
# voices: [''] | ||
|
||
# | ||
# | ||
# stt: | ||
# openai: | ||
# url: '' | ||
|
@@ -98,6 +98,7 @@ endpoints: | |
# timeoutMs: 180000 # Timeout for assistant operations | ||
# # Should only be one or the other, either `supportedIds` or `excludedIds` | ||
# supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"] | ||
# orderBySupportIdsFirst: false # Sort by supportedIds array first | ||
# # excludedIds: ["asst_excludedAssistantId"] | ||
# Only show assistants that the user created or that were created externally (e.g. in Assistants playground). | ||
# # privateAssistants: false # Does not work with `supportedIds` or `excludedIds` | ||
|