parent
f07bed8954
commit
7512783b5c
@ -0,0 +1,15 @@
|
|||||||
|
[tool.poetry]
|
||||||
|
name = "01-core"
|
||||||
|
version = "0.0.1"
|
||||||
|
description = "The python at the heart of the 01."
|
||||||
|
authors = ["Open Interpreter <killian@openinterpreter.com>"]
|
||||||
|
license = "AGPL"
|
||||||
|
readme = "README.md"
|
||||||
|
|
||||||
|
[tool.poetry.dependencies]
|
||||||
|
python = "^3.11"
|
||||||
|
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
@ -0,0 +1,7 @@
|
|||||||
|
### START THE LANGUAGE MODEL
|
||||||
|
|
||||||
|
python llm/start.py
|
||||||
|
|
||||||
|
### START THE INTERPRETER
|
||||||
|
|
||||||
|
python interpreter/start.py
|
@ -1,5 +1,11 @@
|
|||||||
|
### APP
|
||||||
|
|
||||||
# Display app/index.html on the second monitor in full-screen mode
|
# Display app/index.html on the second monitor in full-screen mode
|
||||||
|
google-chrome --kiosk --app=file:///app/index.html
|
||||||
|
|
||||||
|
|
||||||
# Setup the language model
|
### CORE
|
||||||
|
|
||||||
# Setup and serve the interpreter at "/"
|
cd /core
|
||||||
|
poetry install
|
||||||
|
poetry run bash start.sh
|
Loading…
Reference in new issue