DEV Community

Cover image for Interact with AI from your Terminal with Gen-ai-chat
Arindam Majumder
Arindam Majumder

Posted on • Originally published at arindam1729.hashnode.dev

Interact with AI from your Terminal with Gen-ai-chat

Introduction

Are you tired of constantly switching between different applications just to generate text? Are you looking for a way to utilize the power of AI directly from your Linux command-line interface (CLI) terminal?

If so, then this article has the perfect solution for you.

I've created Gen-ai-chat, a powerful npm package that allows you to interact with AI without ever leaving your terminal.

Let's dive deep and explore how this can improve your workflow.

What is Gen-ai-chat?

Screenshot of the npm package page for

Gen-ai-chat is a Node.js command-line interface (CLI) tool that interacts with the Google Gemini API to generate content based on user input. With this tool, you can ask questions directly from your terminal, and get instant responses without the need to switch between different applications.

This makes it an incredibly efficient solution for developers and users who prefer working within the terminal environment.

Whether you're looking to generate text, get coding assistance, or seek answers to complex questions, Gen-ai-chat streamlines the process, saves you time and enhances your productivity.

Features:

It has a variety of features designed to make your interactions with AI seamless and efficient:

  1. Direct Questions: You can ask questions directly from the command line.

  2. File and Directory Context: Provide additional context from files or entire directories.

  3. Interactive Mode: Engage in a multi-question session without restarting the CLI.

  4. Model Selection: Choose your favorite AI model interactively or specify it directly.

  5. Logging: Write logs to a file for later review.

  6. Environment Variable Configuration: Easily manage your API keys using a .env file.

How to use it?

Installation

To get started with Gen-ai-chat, you need to have Node.js and npm installed. You can install the package globally using npx:

npx gen-ai-chat@latest
Enter fullscreen mode Exit fullscreen mode

Note: You can also use this without installing the package globally

Basic Usage

You can start interacting with Gemini from your commandline with this simple command:

npx gen-ai-chat "Your Question"
Enter fullscreen mode Exit fullscreen mode

Note: By default You can make 10 Requests/hour. You need to add your API key to use it unlimitedly

It's that simple! Right?

But wait we can do more things with this!

Using a File as Context

While writing code, we often have questions or doubts. To find answers, we usually have to manually copy the code and search on different AI platforms.

However, with gen-ai-chat, you can simply mention the file where the code is located using the -f option, and it will do the rest of the work!

Here's an example:

npx gen-ai-chat "Explain the code" -f ./index.js
Enter fullscreen mode Exit fullscreen mode

This will use the index.js file as context and generate response based on that!

Using a Directory as Context

Similar to files, if we need to use multiple files as context, we can simply mention the root directory where all the files are located using the -d option, and it will add all the files as context.

Here's an example usage:

npx gen-ai-chat "Your Question" -d /path/to/your/directory
Enter fullscreen mode Exit fullscreen mode

This will iterate through each files in the directory and add them as a context to that question.

💡
Note: While adding files within directories, It will skip larger files such as node_modules, package-lock.json .

Interactive Mode

We can also use this as a chatbot and as multiple questions using the interactive mode. Start the interactive mode using the following command:

npx gen-ai-chat -i
Enter fullscreen mode Exit fullscreen mode

or

npx gen-ai-chat --interactive
Enter fullscreen mode Exit fullscreen mode

In interactive mode, the prompt gen-ai-chat> will appear, indicating that the tool is ready for your questions.

To exit the iteractive mode, you can just type quit or exit .

Choosing Your Favorite Model

Another cool feature of gen-ai-chat is multi-model support. You can choose your favorite model interactively by using the --choose-model option:

npx gen-ai-chat --choose-model
Enter fullscreen mode Exit fullscreen mode

This command will prompt you to select a model from the available options:

Command prompt displaying a model selection menu for

From these options you can choose a model according to your preference.

Alternatively,You can specify the model directly using the --model flag:

npx gen-ai-chat "Your question here" --model gemini-1.5-flash-latest
Enter fullscreen mode Exit fullscreen mode

It's Open Source: Contribute now!

Gen-ai-chat is an open-source project, and contributions are always welcome! If you have ideas for new features or improvements, feel free to open an issue on the GitHub repository.

Ready to code? Fork the repository, make your changes, and submit a pull request.

For more details and to contribute, visit the GitHub repository.

Conclusion

Overall, Gen-ai-chat provides a seamless and efficient way to integrate AI capabilities into your terminal workflow, enhancing productivity and enabling more sophisticated interactions with AI models.

Install it today and transform your workflow with the ease of AI at your fingertips

If you found this blog post helpful, please consider sharing it with others who might benefit.

For Paid collaboration mail me at : arindammajumder2020@gmail.com

Connect with me on Twitter, LinkedIn, Youtube and GitHub.

Thank you for Reading :)

Top comments (0)