diff --git a/Synx Testing.md b/.abandoned/Synx Testing.md similarity index 100% rename from Synx Testing.md rename to .abandoned/Synx Testing.md diff --git a/Synx.md b/.abandoned/Synx.md similarity index 100% rename from Synx.md rename to .abandoned/Synx.md diff --git a/llm.lua b/.abandoned/llm.lua similarity index 100% rename from llm.lua rename to .abandoned/llm.lua diff --git a/ollama-modelfiles/curt b/.abandoned/ollama-modelfiles/curt similarity index 100% rename from ollama-modelfiles/curt rename to .abandoned/ollama-modelfiles/curt diff --git a/ollama-modelfiles/curt2 b/.abandoned/ollama-modelfiles/curt2 similarity index 100% rename from ollama-modelfiles/curt2 rename to .abandoned/ollama-modelfiles/curt2 diff --git a/ollama-modelfiles/synx b/.abandoned/ollama-modelfiles/synx similarity index 100% rename from ollama-modelfiles/synx rename to .abandoned/ollama-modelfiles/synx diff --git a/ollama-modelfiles/synx2 b/.abandoned/ollama-modelfiles/synx2 similarity index 100% rename from ollama-modelfiles/synx2 rename to .abandoned/ollama-modelfiles/synx2 diff --git a/utility-quickref-test.lua b/utility-quickref-test.lua new file mode 100644 index 0000000..21e8a7a --- /dev/null +++ b/utility-quickref-test.lua @@ -0,0 +1,15 @@ +local success, utility = pcall(function() + return dofile((arg[0]:match("@?(.*/)") or arg[0]:match("@?(.*\\)")) .. "utility-functions.lua") +end) +if not success then + print("\n\n" .. tostring(utility)) + error("\n\nThis script may be installed improperly. Follow instructions at:\n\thttps://github.com/TangentFoxy/.lua-files#installation\n") +end + +print(utility.path) +print(utility.OS) +print(utility.uuid()) + +print("\n") + +utility.ls(".")(print)