├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── agent.py ├── background.py ├── chat.py ├── pyproject.toml ├── tasty_agent ├── __init__.py └── server.py └── uv.lock /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/agent.py -------------------------------------------------------------------------------- /background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/background.py -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/chat.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tasty_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/tasty_agent/__init__.py -------------------------------------------------------------------------------- /tasty_agent/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/tasty_agent/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ferdousbhai/tasty-agent/HEAD/uv.lock --------------------------------------------------------------------------------