From 729462d082c3028862e9f04a92e6f58b5e4aed5f Mon Sep 17 00:00:00 2001 From: Daniel Miessler Date: Wed, 7 Feb 2024 15:47:38 -0800 Subject: [PATCH] Removed helpers for now. --- helpers/ask | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100755 helpers/ask diff --git a/helpers/ask b/helpers/ask deleted file mode 100755 index 628f5d6..0000000 --- a/helpers/ask +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bash - -# Prompt the user for a question -echo "Enter your question:" -read question - -# Read the content from stdin -content=$(cat) - -# Combine the content and the question -combined_input="Content: $content\nQuestion: $question" - -# Call the AI module with the combined input -# You can replace this line with the appropriate command to call the AI module in your fabric project -echo "$combined_input" | fabric -p ai