Commit
·
5418cfd
1
Parent(s):
53881e7
output file path
Browse files
app.py
CHANGED
|
@@ -4,7 +4,8 @@ from demo_code_plugin.plugin import source_code
|
|
| 4 |
if __name__ == "__main__":
|
| 5 |
import ivoryos
|
| 6 |
from ivoryos.config import DemoConfig
|
| 7 |
-
|
|
|
|
| 8 |
ivoryos.run(__name__, config=DemoConfig(), blueprint_plugins=source_code, port=7860)
|
| 9 |
|
| 10 |
# # USE CASE 2 - start OS using current module and enable LLM with Ollama
|
|
|
|
| 4 |
if __name__ == "__main__":
|
| 5 |
import ivoryos
|
| 6 |
from ivoryos.config import DemoConfig
|
| 7 |
+
demo_config = DemoConfig()
|
| 8 |
+
demo_config.OUTPUT_FOLDER = "ivoryos_data"
|
| 9 |
ivoryos.run(__name__, config=DemoConfig(), blueprint_plugins=source_code, port=7860)
|
| 10 |
|
| 11 |
# # USE CASE 2 - start OS using current module and enable LLM with Ollama
|