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
#!/usr/bin/env bash | |
# newline-delimited paths for selected files (only if local) | |
#a = $1 #NAUTILUS_SCRIPT_SELECTED_FILE_PATHS | |
# newline-delimited URIs for selected files | |
#b = $2 #NAUTILUS_SCRIPT_SELECTED_URIS | |
# current location | |
#c = $3 #NAUTILUS_SCRIPT_CURRENT_URI | |
# position and size of current window | |
#d = $4 #NAUTILUS_SCRIPT_WINDOW_GEOMETRY |
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
""" | |
# Description: | |
___ | |
""" | |
import _tools as Tools | |
import lmql | |
from dataclasses import dataclass | |
from txtai import Embeddings |
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
""" | |
# Description: | |
___ | |
""" | |
import lmql | |
import pandas as pd | |
import _tools as Tools # Model Path shortcuts. | |
def test1 () : |
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
""" | |
# Description: | |
___ | |
""" | |
import _tools as Tools | |
scenario : Tools.PromptScenario = Tools.PromptScenario() |