diff --git a/01OS/01OS/server/i.py b/01OS/01OS/server/i.py index 6013fba..8682917 100644 --- a/01OS/01OS/server/i.py +++ b/01OS/01OS/server/i.py @@ -46,12 +46,9 @@ def configure_interpreter(interpreter: OpenInterpreter): json.dump([], file) ### SKILLS - try: - interpreter.computer.skills.path = Path(os.getenv('OI_SKILLS_PATH')) - interpreter.computer.skills.import_skills() - except: - print("Temporarily skipping skills (OI 0.2.1, which is unreleased) so we can push to `pip`.") - pass + skills_dir = user_data_dir('01', 'skills') + interpreter.computer.skills.path = skills_dir + interpreter.computer.skills.import_skills() interpreter.computer.run("python", "tasks=[]") diff --git a/01OS/pyproject.toml b/01OS/pyproject.toml index 6342e02..e1cbf65 100644 --- a/01OS/pyproject.toml +++ b/01OS/pyproject.toml @@ -4,7 +4,7 @@ packages = [ {include = "01OS"}, ] include = [".env.example", "start.py", "start.sh"] -version = "0.0.10" +version = "0.0.11" description = "The open-source language model computer" authors = ["Killian "] license = "AGPL"