-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b329865
commit b85bd44
Showing
2 changed files
with
14 additions
and
6 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,12 +1,12 @@ | ||
__version__ = "0.0.12" | ||
__version__ = "0.0.13" | ||
|
||
|
||
from arcee.api import get_dalm, train_dalm, upload_doc, upload_docs | ||
from arcee.api import get_dalm, get_dalm_status, train_dalm, upload_doc, upload_docs | ||
from arcee.config import ARCEE_API_KEY, ARCEE_APP_URL | ||
from arcee.dalm import DALM | ||
|
||
if not ARCEE_API_KEY: | ||
raise Exception(f"ARCEE_API_KEY must be in the environment. You can retrieve your API key from {ARCEE_APP_URL}") | ||
|
||
|
||
__all__ = ["upload_docs", "upload_doc", "train_dalm", "get_dalm", "DALM"] | ||
__all__ = ["upload_docs", "upload_doc", "train_dalm", "get_dalm", "DALM", "get_dalm_status"] |
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