├── .gitattributes ├── LICENSE ├── README.md ├── install.sh ├── pyproject.toml ├── requirements.txt └── src └── futa ├── __init__.py ├── ai_runner.py ├── cli.py └── denials.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/install.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ollama 2 | -------------------------------------------------------------------------------- /src/futa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/futa/ai_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/src/futa/ai_runner.py -------------------------------------------------------------------------------- /src/futa/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/src/futa/cli.py -------------------------------------------------------------------------------- /src/futa/denials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nail-e/futa/HEAD/src/futa/denials.txt --------------------------------------------------------------------------------