Skip to content

Commit e01599f

Browse files
authored
docs(readme): fix readme quickstart typo (#120)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Documentation update (improves or adds clarity to existing documentation) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent b01ad99 commit e01599f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ cd ios && pod install && cd ..
3333
Add this to your component file:
3434
```tsx
3535
import {
36-
LLAMA3_2_1B_QLORA,
36+
LLAMA3_2_3B_QLORA,
3737
LLAMA3_2_3B_TOKENIZER,
3838
useLLM
3939
} from 'react-native-executorch';
4040

4141
function MyComponent() {
4242
// Initialize the model 🚀
4343
const llama = useLLM({
44-
modelSource: LLAMA3_2_1B_QLORA,
45-
tokenizerSource: LLAMA3_2_1B_TOKENIZER
44+
modelSource: LLAMA3_2_3B_QLORA,
45+
tokenizerSource: LLAMA3_2_3B_TOKENIZER
4646
});
4747
// ... rest of your component
4848
}

0 commit comments

Comments
 (0)