-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #103 from vintasoftware/feat/docs-ref
Reference documentation
- Loading branch information
Showing
14 changed files
with
336 additions
and
115 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
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
class AIAssistantMisconfiguredError(Exception): | ||
"""Raised when the AI assistant is misconfigured, e.g. when assistant id is invalid.""" | ||
|
||
pass | ||
|
||
|
||
class AIAssistantNotDefinedError(Exception): | ||
"""Raised when the AI assistant is not defined when trying to get it by id.""" | ||
|
||
pass | ||
|
||
|
||
class AIUserNotAllowedError(Exception): | ||
"""Raised when the user has no permission to manage a Thread, Message, or AIAssistant.""" | ||
|
||
pass |
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
Oops, something went wrong.