-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds early experimentation towards artifacts as assistant extension i…
…n explorer assistant (#193) WIP, disabled by default, first bits to convert prior approach to assistant extension
- Loading branch information
Showing
9 changed files
with
521 additions
and
20 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
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
4 changes: 2 additions & 2 deletions
4
libraries/python/assistant-extensions/assistant_extensions/__init__.py
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,3 +1,3 @@ | ||
from . import attachments | ||
from . import artifacts, attachments | ||
|
||
__all__ = ["attachments"] | ||
__all__ = ["artifacts", "attachments"] |
4 changes: 4 additions & 0 deletions
4
libraries/python/assistant-extensions/assistant_extensions/artifacts/__init__.py
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from ._artifacts import ArtifactsExtension, ArtifactsProcessingErrorHandler | ||
from ._model import Artifact, ArtifactsConfigModel | ||
|
||
__all__ = ["ArtifactsExtension", "ArtifactsConfigModel", "Artifact", "ArtifactsProcessingErrorHandler"] |
Oops, something went wrong.