{"id":28172830,"url":"https://github.com/levitation-opensource/universal-values-assistant-simulation","last_synced_at":"2026-01-16T16:57:58.417Z","repository":{"id":287181636,"uuid":"963222790","full_name":"levitation-opensource/Universal-Values-Assistant-Simulation","owner":"levitation-opensource","description":"Universal Values Assistant Simulation. This code was developed based on research and ideas of Chad https://www.linkedin.com/in/chad-burghardt-723416142/ and coded by Roland https://github.com/levitation","archived":false,"fork":false,"pushed_at":"2026-01-15T11:28:23.000Z","size":1099,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-15T16:24:25.252Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/levitation-opensource.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-09T10:52:04.000Z","updated_at":"2025-09-26T22:08:55.000Z","dependencies_parsed_at":"2025-04-10T11:47:31.852Z","dependency_job_id":"cf7800c4-e0c7-4cb9-88b6-9e30bbc5690f","html_url":"https://github.com/levitation-opensource/Universal-Values-Assistant-Simulation","commit_stats":null,"previous_names":["levitation-opensource/universal-values-assistant-simulation"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/levitation-opensource/Universal-Values-Assistant-Simulation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levitation-opensource%2FUniversal-Values-Assistant-Simulation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levitation-opensource%2FUniversal-Values-Assistant-Simulation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levitation-opensource%2FUniversal-Values-Assistant-Simulation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levitation-opensource%2FUniversal-Values-Assistant-Simulation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/levitation-opensource","download_url":"https://codeload.github.com/levitation-opensource/Universal-Values-Assistant-Simulation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levitation-opensource%2FUniversal-Values-Assistant-Simulation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28480081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-05-15T20:11:11.387Z","updated_at":"2026-01-16T16:57:58.408Z","avatar_url":"https://github.com/levitation-opensource.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n## Project setup\n\nThis readme contains instructions for both Linux and Windows installation. Windows installation instructions are located after Linux installation instructions.\n\n### Installation under Linux\n\nTo setup the environment follow these steps:\n\n1. Install CPython. The code is tested with Python version 3.10.10. We do not recommend using Conda package manager. \n\nUnder Linux, run the following commands:\n\n`sudo add-apt-repository ppa:deadsnakes/ppa`\n\u003cbr\u003e`sudo apt update`\n\u003cbr\u003e`sudo apt install python3.10 python3.10-dev python3.10-venv`\n\u003cbr\u003e`sudo apt install curl`\n\u003cbr\u003e`sudo curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10`\n\n2. Get the code from repo:\n\n`sudo apt install git-all`\n\u003cbr\u003eRun `git clone https://github.com/levitation-opensource/Universal-Values-Assistant-Simulation.git`\n\u003cbr\u003eRun `cd Universal-Values-Assistant-Simulation`\n\n3. Create a virtual python environment:\n\n`python3.10 -m venv_UVAS`\n\u003cbr\u003e`source venv_UVAS/bin/activate`\n\n4. Install dependencies by running:\n\u003cbr\u003e`pip install -r requirements.txt`\n\n\n### Installation under Windows\n\n1. Install CPython from python.org. The code is tested with Python version 3.10.10. We do not recommend using Conda package manager.\n\nYou can download the latest installer from https://www.python.org/downloads/release/python-31010/ or if you want to download a newer 3.10.x version then from https://github.com/adang1345/PythonWindows\n\n2. Get the code from repo:\n* Install Git from https://gitforwindows.org/\n* Open command prompt and navigate top the folder you want to use for repo\n* Run `git clone https://github.com/levitation-opensource/Universal-Values-Assistant-Simulation.git`\n* Run `cd Universal-Values-Assistant-Simulation`\n\n3. Create a virtual python environment by running: \n\u003cbr\u003e3.1. To activate VirtualEnv with Python 3.10:\n\u003cbr\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;`virtualenv -p python3.10 venv_UVAS` \n\u003cbr\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;(or if you want to use your default Python version: \n\u003cbr\u003e\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;\u0026nbsp;`python -m venv venv_UVAS`)\n\u003cbr\u003e3.2. `venv_UVAS\\scripts\\activate`\n\n4. Install dependencies by running:\n\u003cbr\u003e`pip install -r requirements.txt`\n\n\n## Executing `Universal Values Assistant Simulation`\n\nChoose model in `config.ini`.\n\nSet environment variable:\n`OPENAI_API_KEY` or `ANTHROPIC_API_KEY`.\n\nEnsure you have loaded credits on your corresponding LLM API account, else you will get \"rate limit errors\".\n\nRun \n\u003cbr\u003e`python Simulation.py`\n\n\n# License\n\nThis project is licensed under the Mozilla Public License 2.0. You are free to use, modify, and distribute this code under the terms of this license.\n\nFor more details, see the [LICENSE.txt](LICENSE.txt) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevitation-opensource%2Funiversal-values-assistant-simulation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flevitation-opensource%2Funiversal-values-assistant-simulation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevitation-opensource%2Funiversal-values-assistant-simulation/lists"}