-
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 #87 from vintasoftware/fix/move-modules
Restructure modules: separate use cases from API
- Loading branch information
Showing
33 changed files
with
340 additions
and
317 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 |
---|---|---|
@@ -1,4 +1,19 @@ | ||
from importlib import metadata | ||
|
||
from django_ai_assistant.helpers.assistants import ( # noqa | ||
AIAssistant, | ||
register_assistant, | ||
) | ||
from django_ai_assistant.langchain.tools import ( # noqa | ||
BaseModel, | ||
BaseTool, | ||
Field, | ||
StructuredTool, | ||
Tool, | ||
method_tool, | ||
tool, | ||
) | ||
|
||
__version__ = metadata.version(__package__) | ||
|
||
version = __version__ = metadata.version(__package__) | ||
package_name = __package__ |
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
File renamed without changes.
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
Oops, something went wrong.