Skip to content

Commit d4cdf85

Browse files
committed
docs
1 parent 8249cd1 commit d4cdf85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/05-utilities/model-registry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Model Registry
33
---
44

5-
The Model Registry is a collection of all pre-configured model definitions shipped with React Native ExecuTorch. Each entry contains the model's name and all source URLs needed to download and run it, so you don't have to manage URLs manually.
5+
The [Model Registry](/react-native-executorch/docs/next/api-reference/variables/MODEL_REGISTRY) is a collection of all pre-configured model definitions shipped with React Native ExecuTorch. Each entry contains the model's name and all source URLs needed to download and run it, so you don't have to manage URLs manually.
66

77
## Usage
88

@@ -17,7 +17,7 @@ Every model config is exported as a standalone constant:
1717
```typescript
1818
import { LLAMA3_2_1B } from 'react-native-executorch';
1919

20-
const model = useExecutorchModule(LLAMA3_2_1B);
20+
const llm = useLLM({ model: LLAMA3_2_1B });
2121
```
2222

2323
### Listing all models

0 commit comments

Comments
 (0)