Christopher Pereira

Results 71 comments of Christopher Pereira

Ok. Do you have a test case? Or even better, a conversation log showing where the model/framework is failing? I'm very good at decomposing prompts to make them work. I...

@geekan see https://youtu.be/TgB6JO6gup0?si=VJ9HKb07v-xcaihL

New SOTA: https://youtu.be/J2bFf83t1b8?si=GPI1iOgZCBLMEHlf

Are you building a multilevel summary based retriever? Idea: 1. Embed original document and mutli-level summaries. 2. Retrieve and feed the prompt with context crossing info from multiple levels. 3....

Make sure you have enabled the new added option to use a temp file.

Enable the autoupload option and press the save shortcut many times very quickly. Maybe your connection is too fast. If possible, try to connect to a slow/distant remote server. I'm...

This works for the Android SDK: ``` djiAircraft.getFlightController().getLEDsEnabledSettings(new CommonCallbacks.CompletionCallbackWith() { @Override public void onSuccess(LEDsSettings ledsSettings) { LEDsSettings.Builder builder = new LEDsSettings.Builder(); builder.frontLEDsOn(enabled); builder.beaconsOn(ledsSettings.areBeaconsOn()); builder.rearLEDsOn(ledsSettings.areRearLEDsOn()); builder.statusIndicatorOn(true); djiAircraft.getFlightController().setLEDsEnabledSettings( builder.build(), new CommonCallbacks.CompletionCallback() {...

Have you tried following the instructions for building new models?

I would try to add the string "phi3" to the list

I would first research if the model loader is compatible with previous versions. If so, map the ID to the existing loader. Otherwise, create a new loader and have fun...