├── DevSecOpsKB-confluence-loader ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── kb-token-predictor.py ├── kb.py └── requirements.txt ├── DevSecOpsKB-document-management-pinecone ├── .gitignore ├── LICENSE ├── README.md ├── data │ ├── DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf │ ├── DevOps Self-Service Centric Pipeline Integration.pdf │ ├── DevOps Self-Service Centric Terraform Project Structure.pdf │ ├── DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf │ ├── REST APIs-The Silver Bullet in Pipeline Automation.pdf │ └── Troubleshooting Tips for GitHub Actions Workflows.pdf ├── kb.py └── requirements.txt ├── DevSecOpsKB-document-management ├── .gitignore ├── LICENSE ├── README.md ├── data │ ├── DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf │ ├── DevOps Self-Service Centric Pipeline Integration.pdf │ ├── DevOps Self-Service Centric Pipeline Security and Guardrails.pdf │ ├── DevOps Self-Service Centric Terraform Project Structure.pdf │ ├── DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf │ ├── REST APIs-The Silver Bullet in Pipeline Automation.pdf │ └── Troubleshooting Tips for GitHub Actions Workflows.pdf ├── kb.py └── requirements.txt ├── DevSecOpsKB-fastapi ├── README.md ├── backend │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ └── routers │ │ │ │ ├── __init__.py │ │ │ │ └── chat.py │ │ ├── context.py │ │ └── engine │ │ │ ├── __init__.py │ │ │ ├── constants.py │ │ │ ├── context.py │ │ │ ├── generate.py │ │ │ └── index.py │ ├── data │ │ ├── DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf │ │ ├── DevOps Self-Service Centric Pipeline Security and Guardrails.pdf │ │ ├── DevOps Self-Service Centric Terraform Project Structure.pdf │ │ ├── DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf │ │ └── Troubleshooting Tips for GitHub Actions Workflows.pdf │ ├── main.py │ ├── poetry.lock │ ├── pyproject.toml │ └── tests │ │ └── __init__.py ├── frontend │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── components │ │ │ ├── chat-section.tsx │ │ │ ├── header.tsx │ │ │ ├── transform.ts │ │ │ └── ui │ │ │ │ └── chat │ │ │ │ ├── chat-avatar.tsx │ │ │ │ ├── chat-input.tsx │ │ │ │ ├── chat-item.tsx │ │ │ │ ├── chat-messages.tsx │ │ │ │ └── index.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── tailwind.config.ts │ └── tsconfig.json └── package-lock.json ├── DevSecOpsKB-observability ├── .gitignore ├── LICENSE ├── README.md ├── data │ ├── DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf │ ├── DevOps Self-Service Centric Pipeline Integration.pdf │ ├── DevOps Self-Service Centric Pipeline Security and Guardrails.pdf │ ├── DevOps Self-Service Centric Terraform Project Structure.pdf │ ├── DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf │ └── Troubleshooting Tips for GitHub Actions Workflows.pdf ├── flagged │ └── log.csv ├── kb-auto-run.py ├── kb.py └── requirements.txt ├── DevSecOpsKB-router-query-engine-document-management ├── .gitignore ├── LICENSE ├── README.md ├── data │ └── DevOps Self-Service Centric Pipeline Security and Guardrails.pdf ├── kb.py └── requirements.txt ├── DevSecOpsKB ├── LICENSE ├── README.md ├── data │ ├── DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf │ ├── DevOps Self-Service Centric Pipeline Integration.pdf │ ├── DevOps Self-Service Centric Pipeline Security and Guardrails.pdf │ ├── DevOps Self-Service Centric Terraform Project Structure.pdf │ ├── DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf │ └── Troubleshooting Tips for GitHub Actions Workflows.pdf ├── flagged │ └── log.csv └── kb.py ├── LICENSE └── README.md /DevSecOpsKB-confluence-loader/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/Dockerfile -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/kb-token-predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/kb-token-predictor.py -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/kb.py -------------------------------------------------------------------------------- /DevSecOpsKB-confluence-loader/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-confluence-loader/requirements.txt -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric Pipeline Integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric Pipeline Integration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric Terraform Project Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Centric Terraform Project Structure.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/REST APIs-The Silver Bullet in Pipeline Automation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/REST APIs-The Silver Bullet in Pipeline Automation.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/data/Troubleshooting Tips for GitHub Actions Workflows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/data/Troubleshooting Tips for GitHub Actions Workflows.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/kb.py -------------------------------------------------------------------------------- /DevSecOpsKB-document-management-pinecone/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management-pinecone/requirements.txt -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/DevOps Self-Service Centric Pipeline Integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/DevOps Self-Service Centric Pipeline Integration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/DevOps Self-Service Centric Terraform Project Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/DevOps Self-Service Centric Terraform Project Structure.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/REST APIs-The Silver Bullet in Pipeline Automation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/REST APIs-The Silver Bullet in Pipeline Automation.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/data/Troubleshooting Tips for GitHub Actions Workflows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/data/Troubleshooting Tips for GitHub Actions Workflows.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/kb.py -------------------------------------------------------------------------------- /DevSecOpsKB-document-management/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-document-management/requirements.txt -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | storage 3 | .env 4 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/api/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/api/routers/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/api/routers/chat.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/context.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/engine/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/engine/constants.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/engine/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/engine/context.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/engine/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/engine/generate.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/app/engine/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/app/engine/index.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric Terraform Project Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Centric Terraform Project Structure.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/data/Troubleshooting Tips for GitHub Actions Workflows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/data/Troubleshooting Tips for GitHub Actions Workflows.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/main.py -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/poetry.lock -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/backend/pyproject.toml -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/.env -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/.gitignore -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/chat-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/chat-section.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/header.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/transform.ts -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-avatar.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-input.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-item.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/ui/chat/chat-messages.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/components/ui/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/components/ui/chat/index.ts -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/favicon.ico -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/globals.css -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/layout.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/app/page.tsx -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/next.config.js -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/package-lock.json -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/package.json -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/postcss.config.js -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/frontend/tsconfig.json -------------------------------------------------------------------------------- /DevSecOpsKB-fastapi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-fastapi/package-lock.json -------------------------------------------------------------------------------- /DevSecOpsKB-observability/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | -------------------------------------------------------------------------------- /DevSecOpsKB-observability/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB-observability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/DevOps Self-Service Centric Pipeline Integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/DevOps Self-Service Centric Pipeline Integration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/DevOps Self-Service Centric Terraform Project Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/DevOps Self-Service Centric Terraform Project Structure.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/data/Troubleshooting Tips for GitHub Actions Workflows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/data/Troubleshooting Tips for GitHub Actions Workflows.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-observability/flagged/log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/flagged/log.csv -------------------------------------------------------------------------------- /DevSecOpsKB-observability/kb-auto-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/kb-auto-run.py -------------------------------------------------------------------------------- /DevSecOpsKB-observability/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/kb.py -------------------------------------------------------------------------------- /DevSecOpsKB-observability/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-observability/requirements.txt -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .venv/ 3 | -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-router-query-engine-document-management/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-router-query-engine-document-management/README.md -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-router-query-engine-document-management/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-router-query-engine-document-management/kb.py -------------------------------------------------------------------------------- /DevSecOpsKB-router-query-engine-document-management/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB-router-query-engine-document-management/requirements.txt -------------------------------------------------------------------------------- /DevSecOpsKB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/LICENSE -------------------------------------------------------------------------------- /DevSecOpsKB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/README.md -------------------------------------------------------------------------------- /DevSecOpsKB/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/DevOps Self-Service Centric GitHub Actions Workflow Orchestration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/data/DevOps Self-Service Centric Pipeline Integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/DevOps Self-Service Centric Pipeline Integration.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/DevOps Self-Service Centric Pipeline Security and Guardrails.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/data/DevOps Self-Service Centric Terraform Project Structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/DevOps Self-Service Centric Terraform Project Structure.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/DevOps Self-Service Pipeline Architecture and Its 3–2–1 Rule.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/data/Troubleshooting Tips for GitHub Actions Workflows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/data/Troubleshooting Tips for GitHub Actions Workflows.pdf -------------------------------------------------------------------------------- /DevSecOpsKB/flagged/log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/flagged/log.csv -------------------------------------------------------------------------------- /DevSecOpsKB/kb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/DevSecOpsKB/kb.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenqiglantz/DevSecOpsKB-LlamaIndex-LangChain-OpenAI/HEAD/README.md --------------------------------------------------------------------------------