├── .env.example ├── .github └── workflows │ └── python-publish.yml ├── LICENSE ├── README.md ├── agora-banner.png ├── example.py ├── requirements.txt ├── setup.py ├── the-compiler.png └── the_compiler ├── README.md ├── __init__.py ├── main.py └── utils └── main.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/README.md -------------------------------------------------------------------------------- /agora-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/agora-banner.png -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | swarms -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/setup.py -------------------------------------------------------------------------------- /the-compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/the-compiler.png -------------------------------------------------------------------------------- /the_compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/the_compiler/README.md -------------------------------------------------------------------------------- /the_compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /the_compiler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/the_compiler/main.py -------------------------------------------------------------------------------- /the_compiler/utils/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/the-compiler/HEAD/the_compiler/utils/main.txt --------------------------------------------------------------------------------