AI-Agent-Mastery
Hands On AI Agent Mastery: 30-Day Intensive Production Engineering Course
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
링크
예시
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
pipenv
설명 보기 ▼
pipenv
간단하고 통합된 Python 개발 워크플로우.
프로젝트의 패키지 및 가상 환경 관리.
더 많은 정보: <https://pypi.org/project/pipenv>.
pipenv
새 프로젝트 생성:
pipenv --three
Python 3를 사용하여 새 프로젝트 생성:
pipenv install {{package}}
패키지 설치:
poetry
설명 보기 ▼
poetry
Python 패키지 및 의존성을 관리.
관련 항목: `asdf`, `pipenv`, `hatch`.
더 많은 정보: <https://python-poetry.org/docs/cli/>.
poetry new {{project_name}}
특정 이름으로 디렉토리에 새 Poetry 프로젝트 생성:
poetry add {{dependency}}
현재 디렉토리의 `pyproject.toml` 파일에 의존성과 그 하위 의존성 설치 및 추가:
poetry install
현재 디렉토리의 `pyproject.toml` 파일을 사용하여 프로젝트 의존성 설치:
// repository documentation
Was this content helpful?
(0 ratings)
