More file info

I'm preparing to update macos so it'd be nice to see the changes when I do
This commit is contained in:
Explosion Implosion 2024-08-14 08:15:07 -05:00
parent d1fab08049
commit e9de721f45
10 changed files with 11146 additions and 3 deletions

1434
FILES.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -509,4 +509,4 @@ A conversation between a user and a helpful assistant.
`template_version`: `template_version`:
``` ```
20240503 20240503
``` ```

View File

@ -27,4 +27,4 @@ System prompts from Apple Intelligence on the new macOS Sequoia 15.1 Developer B
- [c7f233](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/c7f233bd03663d5f0ccb931bcc14b500b4617397.asset/AssetData/metadata.json): Generates short vivid scenes from user photos with details. - [c7f233](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/c7f233bd03663d5f0ccb931bcc14b500b4617397.asset/AssetData/metadata.json): Generates short vivid scenes from user photos with details.
- [ef56a4](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/ef56a417170bb1085e2e92c80a472b7becf2bff5.asset/AssetData/metadata.json): Makes text more professional, adhering to British or Australian tone. - [ef56a4](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/ef56a417170bb1085e2e92c80a472b7becf2bff5.asset/AssetData/metadata.json): Makes text more professional, adhering to British or Australian tone.
- [fe6265](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/fe6265190939e1902c29032c3f98dd4cc69ad6de.asset/AssetData/metadata.json): Creates urgent classification prompts for conversational dialogue. - [fe6265](com_apple_MobileAsset_UAF_FM_GenerativeModels/purpose_auto/fe6265190939e1902c29032c3f98dd4cc69ad6de.asset/AssetData/metadata.json): Creates urgent classification prompts for conversational dialogue.
- [1f2896](com_apple_MobileAsset_UAF_SummarizationKitConfiguration/purpose_auto/1f289643c1beb11123b7f425f49fac81dc358e73.asset/AssetData/summarization-template.json): Lots of interesting summarization prompts - [1f2896](com_apple_MobileAsset_UAF_SummarizationKitConfiguration/purpose_auto/1f289643c1beb11123b7f425f49fac81dc358e73.asset/AssetData/summarization-template.json): Lots of interesting summarization prompts

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.MobileAsset.UAF.FM.GenerativeModels</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6</string>
<key>CFBundleName</key>
<string>com.apple.fm.language.safety_guardrail.base.generic</string>
<key>CFBundleShortVersionString</key>
<string>1.8.81307</string>
<key>CFBundleVersion</key>
<string>1.8.81307</string>
<key>_ContentEncryption</key>
<string>DSME</string>
<key>_DisableAFSCCompression</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.MobileAsset.UAF.FM.GenerativeModels</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6</string>
<key>CFBundleName</key>
<string>com.apple.fm.language.safety_guardrail.tokenizer.generic</string>
<key>CFBundleShortVersionString</key>
<string>1.8.0</string>
<key>CFBundleVersion</key>
<string>1.8.0</string>
<key>MobileAssetProperties</key>
<dict>
<key>ArchiveDecryptionKeyFile</key>
<string>com.apple.MobileAsset.DecryptionKey.UAFFMLanguage.de3f086.priv</string>
<key>AssetSpecifier</key>
<string>com.apple.fm.language.safety_guardrail.tokenizer.generic</string>
<key>AssetVersion</key>
<string>1.8.0.13.200234,0</string>
<key>AssetVersionInfo</key>
<dict>
<key>AssetVersionGroup</key>
<integer>0</integer>
<key>AssetVersionLong</key>
<string>1.8.0.13.200234,0</string>
<key>AssetVersionTuple</key>
<string>1.8.0.13.200234</string>
<key>BuildVersionTuple</key>
<string>13.13.200234</string>
<key>BundleVersionTuple</key>
<string>1.8.0</string>
</dict>
<key>Build</key>
<string>13M200234</string>
<key>_ContentEncryption</key>
<string>DSME</string>
<key>_IsMAAutoAsset</key>
<true/>
<key>_PreSoftwareUpdateAssetStaging</key>
<true/>
<key>version</key>
<string>1.8.0</string>
</dict>
<key>_ContentEncryption</key>
<string>DSME</string>
<key>_DisableAFSCCompression</key>
<true/>
</dict>
</plist>

12
scripts/add_files.sh Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env bash
# Run from the root of the repo
fd --type f -g "*.json" . -X git add -v {}
fd --type f -g "*Manifest.plist" . -X git add -v {}
fd --type f -g "*Restore.plist" . -X git add -v {}
fd --type f -g "*Info.plist" . -X git add -v {}
fd --type f -g "*GenerativeModels.xml" . -X git add -v {}
git add -v scripts
git add "*.md"
git add summary.json
git add FILES.txt

4
scripts/build_tree.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Run from the root of the repo
tree -I ".git" -I ".DS_Store" -a > FILES.txt

View File

@ -4,10 +4,14 @@
HERE="$(pwd)" HERE="$(pwd)"
SCRIPTS="$HERE/scripts" SCRIPTS="$HERE/scripts"
fd --type f -g "$SCRIPTS/*" -X chmod +x {}
$SCRIPTS/copy_files.sh $SCRIPTS/copy_files.sh
$SCRIPTS/fix_perms.sh $SCRIPTS/fix_perms.sh
$SCRIPTS/format.sh $SCRIPTS/format.sh
$SCRIPTS/build_summary.js $SCRIPTS/build_summary.js
$SCRIPTS/build_tree.sh
$SCRIPTS/add_files.sh
# Pesky ds store # Pesky ds store
fd -u '^\.DS_Store$' -I -tf -X rm fd -u '^\.DS_Store$' -I -tf -X rm