Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
module Lib ( someFunc ) where import Data.List (stripPrefix, isPrefixOf, isInfixOf, stripPrefix) | |
import Data.Char (isAlpha, isAlphaNum, isLetter, isDigit) | |
import Data.List (inits, tails) | |
--import Data.List.Split (split) | |
import Data.Maybe (isJust) |
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
// SPDX-License-Identifier: Apache-2.0 | |
// generated by Qwen3-235B-A22B-Q4_1 but with minor modifications | |
// this dumps the indexedDB from llama.cpp llama-server's webui | |
// copy paste this into the browsers developer console to download all llamacpp server chats | |
const dbName = 'LlamacppWebui'; | |
const openReq = indexedDB.open(dbName); | |
// Step 2: Handle open success/error | |
openReq.onsuccess = (e) => { |