Add PocketPal local app#2221
Open
a-ghorbani wants to merge 1 commit into
Open
Conversation
PocketPal is an open-source on-device LLM app for iOS and Android. It runs GGUF models locally on the phone. The app registers the `pocketpal://hub/run` deeplink scheme and lands on the repo's quant list so the user can pick a file to download and chat with. Generated by [PocketPal Dev Team](https://github.com/a-ghorbani/pocketpal-dev-team)
eb41fe8 to
dc997ce
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds PocketPal to the local-apps registry so a Use this model ▸ PocketPal entry shows up on GGUF model pages.
App-side support is already shipped
The
pocketpal://hub/runhandler is merged in the app: a-ghorbani/pocketpal-ai#761. So this button works as soon as it lands.Tests
Added a
pocketpal deeplinkcase inlocal-apps.spec.ts(with and withoutfilepath).pnpm build,pnpm vitest run src/local-apps.spec.ts(17/17),lint:checkandformat:checkall pass.Note
Low Risk
Small additive registry and test change; no auth, data, or core inference paths touched.
Overview
Adds PocketPal to the
LOCAL_APPSregistry inpackages/tasks/src/local-apps.ts, so GGUF model pages can show Use this model ▸ PocketPal alongside other local apps.The entry uses the same visibility rule as Jan and Atomic Chat (
isLlamaCppGgufModel) and buildspocketpal://hub/rundeeplinks withrepo_id, optionalfilenamewhen a GGUF file is selected, andsource=hf. A matchingpocketpal deeplinktest inlocal-apps.spec.tsasserts both repo-only and file-specific URLs.Reviewed by Cursor Bugbot for commit dc997ce. Bugbot is set up for automated code reviews on this repo. Configure here.
Generated by PocketPal Dev Team