File size: 442 Bytes
6f2393d 8cd87ab 6f2393d a70a796 6c5d588 6f2393d |
1 2 3 4 5 6 7 8 9 10 11 |
from demo_code_plugin.demo_code import pump, sdl, balance
from demo_code_plugin.plugin import source_code
import os
if __name__ == "__main__":
import ivoryos
from ivoryos.config import DemoConfig
ivoryos.run(__name__, config=DemoConfig(), blueprint_plugins=source_code, port=7860)
# # USE CASE 2 - start OS using current module and enable LLM with Ollama
# ivoryos.run(__name__, model="llama3.1", llm_server='localhost')
|