File size: 2,946 Bytes
34e36d9 c032460 34e36d9 c032460 34e36d9 c032460 34e36d9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
project:
type: website
website:
title: "Kashi Coding Handbook"
navbar:
left:
- text: "Home"
href: index.qmd
- text: "Foundation Setup"
menu:
- chapters/ch01-development-environment.qmd
- chapters/ch01-project-structure.qmd
- text: "CLI Development"
menu:
- chapters/ch02-building-with-typer.qmd
- chapters/ch02-configuration-management.qmd
- text: "AI Integration"
menu:
- chapters/ch03-huggingface-llm-apis.qmd
- chapters/ch03-docker-model-deployment.qmd
- chapters/ch03-mcp-toolkit.qmd
- chapters/ch03-prompt-engineering.qmd
- text: "Advanced Features"
menu:
- chapters/ch04-interactive-elements.qmd
- chapters/ch04-batch-processing.qmd
- text: "Testing & Quality"
menu:
- chapters/ch05-writing-tests.qmd
- chapters/ch05-code-quality.qmd
- text: "Publishing"
menu:
- chapters/ch06-package-preparation.qmd
- chapters/ch06-building-publishing.qmd
- text: "Projects"
menu:
- chapters/ch07-fileorganizer-project.qmd
- text: "Appendices"
menu:
- chapters/appendix-pixi-commands.qmd
- chapters/appendix-learning-resources.qmd
sidebar:
- title: "Kashi Coding Handbook"
subtitle: "Building AI-Powered CLI Tools with Python"
contents:
- index.qmd
- section: "Chapter 1: Foundation Setup"
contents:
- chapters/ch01-development-environment.qmd
- chapters/ch01-project-structure.qmd
- section: "Chapter 2: CLI Development"
contents:
- chapters/ch02-building-with-typer.qmd
- chapters/ch02-configuration-management.qmd
- section: "Chapter 3: AI Integration"
contents:
- chapters/ch03-huggingface-llm-apis.qmd
- chapters/ch03-docker-model-deployment.qmd
- chapters/ch03-mcp-toolkit.qmd
- chapters/ch03-prompt-engineering.qmd
- section: "Chapter 4: Advanced Features"
contents:
- chapters/ch04-interactive-elements.qmd
- chapters/ch04-batch-processing.qmd
- section: "Chapter 5: Testing & Quality"
contents:
- chapters/ch05-writing-tests.qmd
- chapters/ch05-code-quality.qmd
- section: "Chapter 6: Publishing"
contents:
- chapters/ch06-package-preparation.qmd
- chapters/ch06-building-publishing.qmd
- section: "Chapter 7: Real-World Projects"
contents:
- chapters/ch07-fileorganizer-project.qmd
- section: "Appendices"
contents:
- chapters/appendix-pixi-commands.qmd
- chapters/appendix-learning-resources.qmd
format:
html:
theme: cosmo
css: styles.css
toc: true |