File tree Expand file tree Collapse file tree 3 files changed +4
-32
lines changed Expand file tree Collapse file tree 3 files changed +4
-32
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " notebookllama"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44description = " An OSS and LlamaCloud-backed alternative to NotebookLM"
55readme = " README.md"
66requires-python = " >=3.13"
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ def get_form_elements(self) -> list:
1414 return [
1515 Select (
1616 options = [
17- ("With Default Settings" , "With Default Settings " ),
18- ("With Custom Settings" , "With Custom Settings " ),
17+ ("With Default Settings" , "default_settings " ),
18+ ("With Custom Settings" , "custom_settings " ),
1919 ],
2020 prompt = "Please select one of the following" ,
2121 id = "setup_type" ,
@@ -38,7 +38,7 @@ def handle_next(self) -> None:
3838
3939 app = self .app
4040 if isinstance (app , EmbeddingSetupApp ):
41- if app .config .setup_type == "With Default Settings " :
41+ if app .config .setup_type == "default_settings " :
4242 app .handle_default_setup ()
4343 else :
4444 app .push_screen (ProviderSelectScreen ())
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments