We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f888231 commit 3551543Copy full SHA for 3551543
1 file changed
apps/llm/app/llm_tool_calling/index.tsx
@@ -19,7 +19,7 @@ import Spinner from '../../components/Spinner';
19
import {
20
useLLM,
21
DEFAULT_SYSTEM_PROMPT,
22
- HAMMER2_1_0_5B_QUANTIZED,
+ HAMMER2_1_1_5B_QUANTIZED,
23
} from 'react-native-executorch';
24
import PauseIcon from '../../assets/icons/pause_icon.svg';
25
import ColorPalette from '../../colors';
@@ -44,7 +44,7 @@ function LLMToolCallingScreen() {
44
const textInputRef = useRef<TextInput>(null);
45
const { setGlobalGenerating } = useContext(GeneratingContext);
46
47
- const llm = useLLM({ model: HAMMER2_1_0_5B_QUANTIZED });
+ const llm = useLLM({ model: HAMMER2_1_1_5B_QUANTIZED });
48
49
useEffect(() => {
50
setGlobalGenerating(llm.isGenerating);
0 commit comments