-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add auto_save option to Settings and CLI (#3386)
* feat: Add auto save feature in Langflow run function. * feat: Add auto_save field to ConfigResponse model. * refactor: Move logger import to the top in __main__.py and update auto save option help message. * refactor: Update variable names for auto save to auto saving.
- Loading branch information
1 parent
93e0ffb
commit c00e687
Showing
4 changed files
with
17 additions
and
2 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 |
---|---|---|
|
@@ -330,3 +330,4 @@ class FlowDataRequest(BaseModel): | |
|
||
class ConfigResponse(BaseModel): | ||
frontend_timeout: int | ||
auto_saving: bool |
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