maid_llm icon indicating copy to clipboard operation
maid_llm copied to clipboard

Crash occurs on Android device

Open Sarvesh-Washindkar opened this issue 7 months ago • 0 comments

Exception screenshot:

Image

Image

Since I didn't find LlamaIsolated, I am using the Llama object. The modelPath comes from the FilePicker Flutter package

final llama = Llama(LlamaController(modelPath: modelPath), ));

final messages = [
  LlamaMessage.withRole(role: 'user', content: 'Hello'),
];

final stream = llama.prompt(messages);

stream.listen((event) {
  print(event);
});

Sarvesh-Washindkar avatar Apr 13 '25 14:04 Sarvesh-Washindkar