|
27 | 27 | </PackageReference>
|
28 | 28 | </ItemGroup>
|
29 | 29 |
|
30 |
| - <Target Name="DownloadContentFiles" BeforeTargets="Build"> |
31 |
| - <DownloadFile SourceUrl="https://huggingface.co/TheBloke/Llama-2-7b-Chat-GGUF/resolve/main/llama-2-7b-chat.Q3_K_S.gguf" DestinationFolder="Models" DestinationFileName="llama-2-7b-chat.Q3_K_S.gguf" SkipUnchangedFiles="true"></DownloadFile> |
32 |
| - <DownloadFile SourceUrl="https://huggingface.co/cjpais/llava-1.6-mistral-7b-gguf/resolve/main/llava-v1.6-mistral-7b.Q3_K_XS.gguf" DestinationFolder="Models" DestinationFileName="llava-v1.6-mistral-7b.Q3_K_XS.gguf" SkipUnchangedFiles="true"></DownloadFile> |
33 |
| - <DownloadFile SourceUrl="https://huggingface.co/cjpais/llava-1.6-mistral-7b-gguf/resolve/main/mmproj-model-f16.gguf" DestinationFolder="Models" DestinationFileName="mmproj-model-f16.gguf" SkipUnchangedFiles="true"></DownloadFile> |
34 |
| - <DownloadFile SourceUrl="https://huggingface.co/leliuga/all-MiniLM-L12-v2-GGUF/resolve/main/all-MiniLM-L12-v2.Q8_0.gguf" DestinationFolder="Models" DestinationFileName="all-MiniLM-L12-v2.Q8_0.gguf" SkipUnchangedFiles="true"></DownloadFile> |
35 |
| - |
| 30 | + <Target Name="DownloadContentFilesInner"> |
| 31 | + |
| 32 | + <DownloadFile |
| 33 | + SourceUrl="https://huggingface.co/TheBloke/Llama-2-7b-Chat-GGUF/resolve/main/llama-2-7b-chat.Q3_K_S.gguf" |
| 34 | + DestinationFolder="Models" |
| 35 | + DestinationFileName="llama-2-7b-chat.Q3_K_S.gguf" |
| 36 | + SkipUnchangedFiles="true"> |
| 37 | + </DownloadFile> |
| 38 | + |
| 39 | + <DownloadFile |
| 40 | + SourceUrl="https://huggingface.co/cjpais/llava-1.6-mistral-7b-gguf/resolve/main/llava-v1.6-mistral-7b.Q3_K_XS.gguf" |
| 41 | + DestinationFolder="Models" DestinationFileName="llava-v1.6-mistral-7b.Q3_K_XS.gguf" |
| 42 | + SkipUnchangedFiles="true"> |
| 43 | + </DownloadFile> |
| 44 | + |
| 45 | + <DownloadFile |
| 46 | + SourceUrl="https://huggingface.co/cjpais/llava-1.6-mistral-7b-gguf/resolve/main/mmproj-model-f16.gguf" |
| 47 | + DestinationFolder="Models" |
| 48 | + DestinationFileName="mmproj-model-f16.gguf" |
| 49 | + SkipUnchangedFiles="true"> |
| 50 | + </DownloadFile> |
36 | 51 |
|
| 52 | + <DownloadFile |
| 53 | + SourceUrl="https://huggingface.co/leliuga/all-MiniLM-L12-v2-GGUF/resolve/main/all-MiniLM-L12-v2.Q8_0.gguf" |
| 54 | + DestinationFolder="Models" |
| 55 | + DestinationFileName="all-MiniLM-L12-v2.Q8_0.gguf" |
| 56 | + SkipUnchangedFiles="true"> |
| 57 | + </DownloadFile> |
| 58 | + |
| 59 | + </Target> |
| 60 | + |
| 61 | + <Target Name="DownloadContentFiles" BeforeTargets="DispatchToInnerBuilds;BeforeBuild"> |
| 62 | + <MSBuild Projects="$(MSBuildProjectFile)" Targets="DownloadContentFilesInner" Properties="TargetFramework=once" /> |
37 | 63 | </Target>
|
38 | 64 |
|
39 | 65 | <ItemGroup>
|
|
0 commit comments