|
|
|
[tool.poetry]
|
|
|
|
name = "01OS"
|
|
|
|
packages = [
|
|
|
|
{include = "source"},
|
|
|
|
]
|
|
|
|
include = ["start.py"]
|
|
|
|
version = "0.0.14"
|
|
|
|
description = "The open-source language model computer"
|
|
|
|
authors = ["Killian <killian@openinterpreter.com>"]
|
|
|
|
license = "AGPL"
|
|
|
|
readme = "../README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.9,<3.12"
|
|
|
|
pyaudio = "^0.2.14"
|
|
|
|
pynput = "^1.7.6"
|
|
|
|
websockets = "^12.0"
|
|
|
|
python-dotenv = "^1.0.1"
|
|
|
|
ffmpeg-python = "^0.2.0"
|
|
|
|
textual = "^0.50.1"
|
|
|
|
pydub = "^0.25.1"
|
|
|
|
ngrok = "^1.0.0"
|
|
|
|
simpleaudio = "^1.0.4"
|
|
|
|
opencv-python = "^4.9.0.80"
|
|
|
|
psutil = "^5.9.8"
|
|
|
|
platformdirs = "^4.2.0"
|
|
|
|
rich = "^13.7.1"
|
|
|
|
pytimeparse = "^1.1.8"
|
|
|
|
python-crontab = "^3.0.0"
|
|
|
|
inquirer = "^3.2.4"
|
|
|
|
pyqrcode = "^1.2.1"
|
|
|
|
realtimestt = "^0.1.16"
|
|
|
|
realtimetts = { version = "^0.4.2", extras = ["all"] }
|
|
|
|
keyboard = "^0.13.5"
|
|
|
|
pyautogui = "^0.9.54"
|
|
|
|
ctranslate2 = "4.1.0"
|
|
|
|
#py3-tts = "^3.5"
|
|
|
|
#elevenlabs = "1.2.2"
|
|
|
|
groq = "^0.5.0"
|
|
|
|
open-interpreter = {git = "https://github.com/OpenInterpreter/open-interpreter.git", branch = "development", extras = ["os", "server"]}
|
|
|
|
litellm = "*"
|
|
|
|
openai = "*"
|
|
|
|
pywebview = "*"
|
|
|
|
pyobjc = "*"
|
|
|
|
sentry-sdk = "^2.4.0"
|
|
|
|
plyer = "^2.1.0"
|
|
|
|
pywinctl = "^0.3"
|
|
|
|
certifi = "^2024.7.4"
|
|
|
|
pygame = "^2.6.0"
|
|
|
|
mpv = "^1.0.7"
|
|
|
|
livekit = "^0.12.1"
|
|
|
|
livekit-agents = "^0.8.6"
|
|
|
|
livekit-plugins-deepgram = "^0.6.5"
|
|
|
|
livekit-plugins-openai = "^0.8.1"
|
|
|
|
livekit-plugins-silero = "^0.6.4"
|
|
|
|
livekit-plugins-elevenlabs = "^0.7.3"
|
|
|
|
segno = "^1.6.1"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
01 = "start:app"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
black = "^24.3.0"
|
|
|
|
isort = "^5.12.0"
|
|
|
|
pre-commit = "^3.6.2"
|
|
|
|
pytest = "^8.1.1"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
target-version = ['py311']
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|