├── .chainlit ├── config.toml └── translations │ ├── bn.json │ ├── en-US.json │ ├── gu.json │ ├── he-IL.json │ ├── hi.json │ ├── ja.json │ ├── kn.json │ ├── ml.json │ ├── mr.json │ ├── nl.json │ ├── ta.json │ ├── te.json │ └── zh-CN.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── docs_website_change.yaml │ ├── generic_issue.yaml │ ├── question.yaml │ └── use-case.yaml ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── docs_website_pr.md │ └── general_code_pr.md ├── scripts │ └── collect_metrics.py └── workflows │ └── collect_metrics.yaml ├── .gitignore ├── LICENSE ├── README.md ├── apps ├── 01-chatbot │ ├── .env.example │ ├── .python-version │ ├── Dockerfile.demo_01 │ ├── Dockerfile.playground │ ├── README.md │ ├── demo_01_app.py │ ├── demo_01_client.py │ ├── docker-compose.yml │ ├── pyproject.toml │ ├── test_log_print.py │ └── uv.lock └── 02-deep-research │ └── README.md ├── chainlit.md └── notebooks ├── 01-responses ├── README.md ├── README_NPS.md ├── nps_mcp_server.py ├── requirements.txt ├── responses-api.ipynb └── run.yaml └── README.md /.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/config.toml -------------------------------------------------------------------------------- /.chainlit/translations/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/bn.json -------------------------------------------------------------------------------- /.chainlit/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/en-US.json -------------------------------------------------------------------------------- /.chainlit/translations/gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/gu.json -------------------------------------------------------------------------------- /.chainlit/translations/he-IL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/he-IL.json -------------------------------------------------------------------------------- /.chainlit/translations/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/hi.json -------------------------------------------------------------------------------- /.chainlit/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/ja.json -------------------------------------------------------------------------------- /.chainlit/translations/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/kn.json -------------------------------------------------------------------------------- /.chainlit/translations/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/ml.json -------------------------------------------------------------------------------- /.chainlit/translations/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/mr.json -------------------------------------------------------------------------------- /.chainlit/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/nl.json -------------------------------------------------------------------------------- /.chainlit/translations/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/ta.json -------------------------------------------------------------------------------- /.chainlit/translations/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/te.json -------------------------------------------------------------------------------- /.chainlit/translations/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.chainlit/translations/zh-CN.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs_website_change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/ISSUE_TEMPLATE/docs_website_change.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/generic_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/ISSUE_TEMPLATE/generic_issue.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/ISSUE_TEMPLATE/question.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/use-case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/ISSUE_TEMPLATE/use-case.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/docs_website_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/PULL_REQUEST_TEMPLATE/docs_website_pr.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/general_code_pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/PULL_REQUEST_TEMPLATE/general_code_pr.md -------------------------------------------------------------------------------- /.github/scripts/collect_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/scripts/collect_metrics.py -------------------------------------------------------------------------------- /.github/workflows/collect_metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.github/workflows/collect_metrics.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/README.md -------------------------------------------------------------------------------- /apps/01-chatbot/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/.env.example -------------------------------------------------------------------------------- /apps/01-chatbot/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /apps/01-chatbot/Dockerfile.demo_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/Dockerfile.demo_01 -------------------------------------------------------------------------------- /apps/01-chatbot/Dockerfile.playground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/Dockerfile.playground -------------------------------------------------------------------------------- /apps/01-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/README.md -------------------------------------------------------------------------------- /apps/01-chatbot/demo_01_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/demo_01_app.py -------------------------------------------------------------------------------- /apps/01-chatbot/demo_01_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/demo_01_client.py -------------------------------------------------------------------------------- /apps/01-chatbot/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/docker-compose.yml -------------------------------------------------------------------------------- /apps/01-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/pyproject.toml -------------------------------------------------------------------------------- /apps/01-chatbot/test_log_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/test_log_print.py -------------------------------------------------------------------------------- /apps/01-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/01-chatbot/uv.lock -------------------------------------------------------------------------------- /apps/02-deep-research/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/apps/02-deep-research/README.md -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- 1 | # Welcome to AI Alliance Chat! 🚀🤖 2 | 3 | Placeholder -------------------------------------------------------------------------------- /notebooks/01-responses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/README.md -------------------------------------------------------------------------------- /notebooks/01-responses/README_NPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/README_NPS.md -------------------------------------------------------------------------------- /notebooks/01-responses/nps_mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/nps_mcp_server.py -------------------------------------------------------------------------------- /notebooks/01-responses/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/requirements.txt -------------------------------------------------------------------------------- /notebooks/01-responses/responses-api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/responses-api.ipynb -------------------------------------------------------------------------------- /notebooks/01-responses/run.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/01-responses/run.yaml -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-AI-Alliance/llama-stack-examples/HEAD/notebooks/README.md --------------------------------------------------------------------------------