File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ Experience Blade Code instantly without installation:
6262# Interactive mode
6363npx blade-code
6464
65- # Quick Q&A (non-interactive with --print )
65+ # Quick Q&A (non-interactive)
6666npx blade-code --print " Explain what TypeScript is"
6767
68- # Code generation
68+ # Code generation (non-interactive)
6969npx blade-code --print " Write a quicksort algorithm in Python"
7070```
7171
@@ -88,7 +88,7 @@ After installation, use the `blade` command:
8888# Interactive mode (default)
8989blade
9090
91- # Direct Q&A (with --print )
91+ # Quick Q&A (non-interactive )
9292blade --print " Hello, introduce yourself"
9393```
9494
Original file line number Diff line number Diff line change 5959无需安装,直接体验 Blade Code:
6060
6161``` bash
62- # 快速问答
63- npx blade-code " 解释什么是 TypeScript"
64-
65- # 启动交互式界面
62+ # 交互式模式
6663npx blade-code
6764
68- # 代码生成
69- npx blade-code " 用 Python 写一个快速排序算法"
65+ # 快速问答(非交互式)
66+ npx blade-code --print " 解释什么是 TypeScript"
67+
68+ # 代码生成(非交互式)
69+ npx blade-code --print " 用 Python 写一个快速排序算法"
7070```
7171
7272### 📦 全局安装(推荐)
@@ -85,7 +85,11 @@ yarn global add blade-code
8585安装后即可使用 ` blade ` 命令:
8686
8787``` bash
88- blade " 你好,介绍一下自己"
88+ # 交互式模式(默认)
89+ blade
90+
91+ # 快速问答(非交互式)
92+ blade --print " 你好,介绍一下自己"
8993```
9094
9195---
You can’t perform that action at this time.
0 commit comments