This file contains 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
# Clone llama.cpp | |
git clone https://github.com/ggerganov/llama.cpp.git | |
cd llama.cpp | |
# Build it | |
make clean | |
LLAMA_METAL=1 make | |
# Download model | |
export MODEL=llama-2-13b-chat.ggmlv3.q4_0.bin |
This file contains 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
CREATE TABLE [dbo].[tblFindTrackingQueue] | |
( | |
[Id] [bigint] IDENTITY(1,1) NOT NULL, | |
[TrackingId] [nvarchar](max) NOT NULL, | |
[NrOfHits] [int] NOT NULL, | |
[Query] [nvarchar](max) NOT NULL, | |
[Tags] [nvarchar](max) NOT NULL | |
); | |
GO |
This file contains 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
namespace Epi.Libraries.Commerce.Predictions | |
{ | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using System.Web; | |
using EPiServer.Commerce.Catalog.ContentTypes; | |
using EPiServer.Commerce.Catalog.Linking; |