AI-Agent-Mastery
Hands On AI Agent Mastery: 30-Day Intensive Production Engineering Course
File Explorer
- settings.py
- base.txt
- core.py
- __init__.py
- settings.py
- encryption.py
- logger.py
- api.py
- cli.py
- docker-entrypoint.sh
- Dockerfile.backend
- Dockerfile.frontend
- index.html
- Dashboard.js
- api.js
- App.js
- index.js
- package-lock.json
- package.json
- test_api.py
- test_agent_core.py
- .env.example
- .gitignore
- docker-compose.yml
- README.md
- start.sh
- stop.sh
- verify_setup.sh
- __init__.py
- analytics.py
- memory.py
- security.py
- config.py
- logging.py
- database.py
- __init__.py
- main.py
- __init__.py
- conversation.py
- __init__.py
- context_service.py
- encryption_service.py
- memory_service.py
- pii_service.py
- test_memory.py
- __init__.py
- requirements.txt
- Navigation.tsx
- Conversations.tsx
- Dashboard.tsx
- Security.tsx
- api.ts
- globals.css
- App.tsx
- main.tsx
- index.html
- package.json
- postcss.config.js
- tailwind.config.js
- vite.config.ts
- start.sh
- stop.sh
- .gitignore
- Day 2: Step-by-Step Implementation Guide.pdf
- demo_test.py
- README.md
- __init__.py
- file_agent.py
- __init__.py
- audit_logger.py
- permission_manager.py
- __init__.py
- tool_registry.py
- __init__.py
- __init__.py
- main.py
- test_security.py
- requirements.txt
- index.html
- AgentDashboard.js
- AuditLogs.js
- SecurityPanel.js
- ToolRegistry.js
- ApiService.js
- App.js
- index.js
- package.json
- .gitignore
- docker-compose.yml
- Dockerfile
- start.sh
- stop.sh
- __init__.py
- auth.py
- health.py
- monitoring.py
- __init__.py
- router.py
- __init__.py
- circuit_breaker.py
- config.py
- rate_limiter.py
- session_manager.py
- monitoring_tracker.py
- price_scraper.py
- __init__.py
- main.py
- __init__.py
- test_circuit_breaker.py
- test_rate_limiter.py
- requirements.txt
- Dockerfile.backend
- Dockerfile.frontend
- nginx.conf
- CircuitBreakerStatus.jsx
- MonitoringPanel.jsx
- RateLimitStatus.jsx
- useAuth.jsx
- Dashboard.jsx
- Login.jsx
- App.jsx
- main.jsx
- index.html
- package-lock.json
- package.json
- vite.config.js
- .gitignore
- build.sh
- demo.sh
- docker-compose.yml
- README.md
- start.sh
- stop.sh
- test.sh
- config.py
- security.py
- document.py
- audit_logger.py
- document_processor.py
- metadata_extractor.py
- pii_detector.py
- secure_storage.py
- virus_scanner.py
- main.py
- 2025-08-29.jsonl
- audit-2025-08-29.jsonl
- 194f8027-0328-4efe-9de6-022cacdad339.json
- 2691e4f0-6d23-4d5d-97a5-0124a17d319d.json
- 326db82c-e09a-4b8d-9411-098dcff30c59.json
- 4bbc8656-e19c-4139-9577-bfcb714f4e46.json
- b220d5e3-6f1c-48fb-ac8b-ffec13995542.json
- test_document_processor.py
- Dockerfile
- requirements.txt
- index.html
- Header.js
- AuditLogs.js
- Dashboard.js
- DocumentView.js
- UploadPage.js
- api.js
- App.css
- App.js
- App.test.js
- index.css
- index.js
- Dockerfile
- package-lock.json
- package.json
- test_document.txt
- build.sh
- docker-compose.yml
- start.sh
- stop.sh
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pipenv
View Details ▼
pipenv
Simple and unified Python development workflow.
Manage packages and the virtual environment for a project.
pipenv
Create a new project:
pipenv --three
Create a new project using Python 3:
pipenv install {{package}}
Install a package:
poetry
View Details ▼
poetry
Manage Python packages and dependencies.
Some subcommands such as `about`, `check`, `env`, etc. have their own usage documentation.
See also: `asdf`, `pipenv`, `hatch`.
poetry new {{project_name}}
Create a new Poetry project in the directory with a specific name:
poetry add {{dependency}}
Install and add a dependency and its sub-dependencies to the `pyproject.toml` file in the current directory:
poetry install
Install the project dependencies using the `pyproject.toml` file in the current directory:
