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
| #!/bin/bash | |
| # Script: parse-output.sh | |
| # Purpose: Run a command and use Qwen LLM to parse any error output | |
| # Usage: ./parse-output.sh [--show-output] <command> | |
| # Default: Quiet mode (LLM-friendly output only) | |
| # Debug mode: Use --show-output to see full command output and progress | |
| MODEL="mlx-community/Qwen3-30B-A3B-4bit-DWQ" |
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
| class Node { | |
| constructor(character) { | |
| this.edges = {}; | |
| this.data = undefined; // where we will store the flag data / capitalized names | |
| this.character = character; | |
| this.endOfWord = false; | |
| } | |
| } | |
| export default class Trie extends Node { |