-
Notifications
You must be signed in to change notification settings - Fork 12
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
701e5ec
commit a9cc05f
Showing
7 changed files
with
15 additions
and
32 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/rev_ai/models/asynchronous/summarization_formatting_options.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,7 +1,7 @@ | ||
from enum import Enum | ||
"""Summarization formatting options.""" | ||
|
||
|
||
class SummarizationFormattingOptions(str, Enum): | ||
"""Summarization formatting options.""" | ||
PARAGRAPH = "paragraph" | ||
BULLETS = "bullets" |
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,9 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Enum for Summarization Job statuses""" | ||
|
||
from enum import Enum | ||
|
||
|
||
class SummarizationJobStatus(str, Enum): | ||
"""Enum for Summarization Job statuses""" | ||
IN_PROGRESS = "in_progress" | ||
FAILED = "failed" | ||
COMPLETED = "completed" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Enum for Translation Job statuses""" | ||
|
||
from enum import Enum | ||
|
||
|
||
class TranslationJobStatus(str, Enum): | ||
"""Enum for Translation Job statuses""" | ||
IN_PROGRESS = "in_progress" | ||
FAILED = "failed" | ||
COMPLETED = "completed" |
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