Using FluentCLI

The core of fluent is taking the various types of input from a command prompt and allowing those to be combined in interesting ways to send to an AI LLM for processing.


A most basic FluentCLI command example is:

This command calls the OpusChain (we don't know if it's Langflow or Flowise from here) and sends the request 'This is a test' to the chatflow.

A few moments later, the response is returned to the terminal as text.

fluent OpusChain 'This is a test'

In this example, we echo the text, 'This is a test' to fluent's stdin input. This is combined with the input question and sent to the OpusChain. The two will be combined if I include a string in the request.


In this request, we combine 'What is this?' with 'This is a test' and send it to the LLM.

Any text can be piped into fluent through stdin. However, token size limits do apply. If you exceed the size limit, you will receive a response like this:


Adding file contents to the request payload

Last updated