yuvalsuede / jasper-alternative-gpt

A Jasper alternative open source with ChatGPT

Home Page:https://jasper-alternative-gpt.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

Welcome to Jema.ai

Open source Jasper alternative.

License: MIT License

This project uses ChatGPT API to create almost any text based output for your need - from marketing content to blog post ideas and a lot more. It uses simple template based components to ask ChatGPT for generating results Creating new templates or tasks take about 30 mins. no more, so you can extend it for your needs or wait for new template release :)

Jema.ai Jasper alternative

Jema.ai Open Source Jasper alternative

Get ahead of 99% of developers with AI πŸš€

Stay updated, informed, and at the cutting edge of the AI revolution in development.

πŸ‘‰ Subscribe to my newsletter

Join the elite circle of developers leveraging AI tools and insights to supercharge their projects and careers.

How it works

This project uses the ChatGPT API and Vercel Edge functions. It takes a template for each action or command type, and based on the inputs and mission, it sends ChatGPT the commands to get the required results. The "command" field in each template is most important to tell ChatGPT what to do. In addition, you can add different input types for each template if you wish to use additional parameters. More template can be added to the TEMPLATES list.

Add your own OpenAI API key and have your own Jema.ai

In order to work locally or deploy this project to Vercel, you need to set your OPENAI_API_KEY to use ChatGPT3 API. Once added , this should work out of the box.

Running Locally

This project is built with Next.js and TailwindCSS, so you can deploy it directly to Vercel.

After cloning the repo, go to OpenAI to make an account and put your API key in a file called .env.local(OPENAI_API_KEY) Then, run the application in the command line and it will be available at http://localhost:3000.

npm install

yarn dev

Changing ChatGPT prompts and requests

You can fine tune ChatGPT to your needs, give it any mission that you wish it to complete. The basic message structure is as follows:

const generateOutputHandler = async (template: Template, inputsData: { [key: string]: string }) => {
    const instruction = createInstruction(template.inputs, inputsData);
    const mainGoal = template.description;

    const messages = [
        { role: "system", content: "You are a helpful assistant." },
        { role: "user", content: `Your task is: "${mainGoal}".\n\nHere are the details:\n${instruction}. 
            Please suggest 3 outputs. number them 1,2,3` },
    ];

    try {
        const response: any = await openai.createChatCompletion({
            model: "gpt-3.5-turbo",
            // @ts-ignore
            messages: messages,
            temperature: 1,
        });

        const reply = response?.data?.choices[0].message.content;
        setOutput(reply || '');

    } catch (error) {
        console.log(error)
    }
};

Who made this project

My name is Yuval - an entrepreneur at heart , I ❀️ building end-to-end systems that not only look amazing and feel state-of-the-art, but also have real meaning and impact.

You can contact me on Linkedin for any suggestions, questions or thoughts. https://www.linkedin.com/in/yuval-suede/

🀝 Contributing

Contributions, issues and feature requests are welcome!
I will always appreciate a STAR and an attribution of the main demo website

  • Fork the repository, Clone it on your device. That's it πŸŽ‰
  • Finally make a pull request :)

Get ahead of 99% of developers with AI πŸš€

get ahead

Stay updated, informed, and at the cutting edge of the AI revolution in development.

πŸ‘‰ Subscribe to my newsletter

Join the elite circle of developers leveraging AI tools and insights to supercharge their projects and careers.

πŸ“ License

This project is MIT License licensed.

About

A Jasper alternative open source with ChatGPT

https://jasper-alternative-gpt.vercel.app

License:MIT License


Languages

Language:TypeScript 93.8%Language:CSS 4.3%Language:JavaScript 1.9%