Replies: 4 comments 3 replies
-
I am also curious about this. How do I pass a log file to fabric? Cant be so that I need to copy paste all info from the logs. PLease advise. |
Beta Was this translation helpful? Give feedback.
-
I don´t know if this helps but I did this for analyzing logs in windows/powershell: Get-Content .\path\to\logfile.log* | --pattern analyze_logs and it worked (*obviously you have to refer to your own path structure) I do agree that there should be more examples on how to use the different patterns, in all systems (mac, win, lin) |
Beta Was this translation helpful? Give feedback.
-
Maybe I'm missing something but it appears you are making this far more complicated that it needs to be.
will stream/show contents of the file
will summarize anything that is stream/sent to it so:
will summarize |
Beta Was this translation helpful? Give feedback.
-
I believe snafu4 accurately detected the root cause. However, there is one deeper issue you need to understand. Pdf's Docx's, Xls's, all these file formats are not plain text. LLMs, not just through using the Fabric CLI tool, accept plain text. They need to be pre- processed into plain text (there are countless methods out there now). When a new service pops up that allows for their LLMs or AI's to interact with your Pdf's and Doc's, what they are doing under the hood is extracting the information from those formats into plain text before feeding the payloads to an LLM. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
So I have used pbpaste. yt and echo to pass information to fabric , does anyone know how to pass a file ? for example I have a document or log file I would like to analyze is there a way to pass a pdf, docx, xls, or txt to fabric to run patterns agains that information ?
Beta Was this translation helpful? Give feedback.
All reactions