Skip to content

Commit 44f4f24

Browse files
committed
docs: more clear headers
1 parent 026c741 commit 44f4f24

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

docs/sdk-android.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ gpr.key=YOUR_GITHUB_TOKEN
6161

6262
## Usage
6363

64-
### Simple Import (No LLM Required)
64+
### Simple Import (Default LLM Settings)
65+
66+
Uses default LLM provider from environment variables (e.g., `OPENAI_API_KEY`).
6567

6668
```kotlin
6769
import org.cooklang.import.*
@@ -71,7 +73,7 @@ suspend fun importRecipe(url: String): String {
7173
}
7274
```
7375

74-
### Import with LLM Configuration
76+
### Import with Custom LLM Configuration
7577

7678
```kotlin
7779
suspend fun importWithLlm(url: String, apiKey: String): String {

docs/sdk-ios.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ Add to your target:
3636

3737
## Usage
3838

39-
### Simple Import (No LLM Required)
39+
### Simple Import (Default LLM Settings)
40+
41+
Uses default LLM provider from environment variables (e.g., `OPENAI_API_KEY`).
4042

4143
```swift
4244
import CooklangImport
@@ -47,7 +49,7 @@ func importRecipe() async throws {
4749
}
4850
```
4951

50-
### Import with LLM Configuration
52+
### Import with Custom LLM Configuration
5153

5254
```swift
5355
func importWithLlm() async throws {

0 commit comments

Comments
 (0)