You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really, really tried hard to understand and modify the code but I am not an expert on C++ and so I find it a little bit difficult to change parts of this software. Is there a way to simply execute a command and get the output without all of that verbosity?
The text was updated successfully, but these errors were encountered:
Yes, by design all the "verbosity" is output to standard error (stderr) and the actual output in standard output (stdout)
so simply running: main -m ./models/llama-13B-ggml/ggml-model-q4_0.bin -p "Hi Bob!" > bob.txt
will get you exactly what you want
bob.txt:
Hi Bob! Thank you for using our app. Our apologies for the trouble on your account, we have escalated it to a higher level so that they can look into it. We shall keep you posted as soon as we receive an update from them.
Please let us know if you need anything else, or have any questions. Thank you for being a part of our community!
I really, really tried hard to understand and modify the code but I am not an expert on C++ and so I find it a little bit difficult to change parts of this software. Is there a way to simply execute a command and get the output without all of that verbosity?
The text was updated successfully, but these errors were encountered: