├── .github └── workflows │ └── main.yml ├── .gitignore ├── .streamlit └── config.toml ├── README.md ├── app.py ├── llm.py ├── prompts.py ├── requirements.txt ├── self_discover.py └── task_example.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/app.py -------------------------------------------------------------------------------- /llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/llm.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/requirements.txt -------------------------------------------------------------------------------- /self_discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/self_discover.py -------------------------------------------------------------------------------- /task_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kailashsp/SELF-DISCOVER/HEAD/task_example.py --------------------------------------------------------------------------------