The ModelFusion Terminal App Starter is a template for creating your own AI terminal app. It is based on the ModelFusion library and uses OpenAI's gpt-3.5-turbo-instruct model to generate text. Follow the steps below to set up your environment.
- Node.js version 18 or above is required.
- OpenAI API key.
Clone this repository to your local machine.
git clone https://github.com/lgrammel/modelfusion-terminal-app-starter.gitNavigate to the project directory and install required packages.
cd modelfusion-terminal-app-starter
npm installCreate a .env file in the project root. Add your OpenAI API key like so:
OPENAI_API_KEY="your-api-key"Run the following command to start the app:
npm startThat's it! You can now modify the starter to create your own AI terminal app.