Skip to content

Commit 096bd10

Browse files
fix: add missing lfm type to LLMModelName (#1069)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Introduces a breaking change? - [ ] Yes - [ ] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [ ] Documentation update (improves or adds clarity to existing documentation) - [ ] Other (chores, tests, code style improvements etc.) ### 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 eeaa8a2 commit 096bd10

File tree

1 file changed

+2
-1
lines changed
  • packages/react-native-executorch/src/types

1 file changed

+2
-1
lines changed

packages/react-native-executorch/src/types/llm.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ export type LLMModelName =
5555
| 'lfm2.5-350m-quantized'
5656
| 'lfm2.5-1.2b-instruct'
5757
| 'lfm2.5-1.2b-instruct-quantized'
58-
| 'lfm2.5-vl-1.6b-quantized';
58+
| 'lfm2.5-vl-1.6b-quantized'
59+
| 'lfm2.5-vl-450m-quantized';
5960

6061
/**
6162
* Properties for initializing and configuring a Large Language Model (LLM) instance.

0 commit comments

Comments
 (0)