The Biggest LLM which will always be free :-)

About Jabir Project

Jabir Project was initially a hobby project started in 2011 by Muhammadreza Haghiri as an effort to make an operating system based on Ubuntu. The project continued until the late 2015 and went defunct since it wasn't worth maintaining anymore. Now, the project is back with new attitude of being a free of charge generative AI platform. This website is dedicated to models developed by Jabir Team and this foundation will be non-profit as long as we can afford it.

The model

Jabir LLM is a 400 billion parameter model (based on LLaMa 3.1) trained on various datasets gathered from all over the internet. The main goal of this project is to be a multilingual and general purpoese model for different usecases. We've tested the model on different tasks such as question answering in different languages (mostly English and Persian), code generation, basic reasoning tasks and the model showed a really good performance to all of them and most of the time the results were better than competitors such as GPT-4o, Claude 3.5 Sonnet, Claude 3.5 Opus and Google's Gemini.
Currently our model is available through an API and the only thing you need is basically an API Key. You can grab your own API key from this link and start building apps or UI's using our model!

API

By filling the form bellow, you will obtain an API Key which you can use and start building with our model! Just enter an application name and you are ready to go.

Your key will appear here

                        
xxxx-xxxx-xxxx-xxxx
                        
                    

FAQ

What does Jabir mean?

Jabir or Jabeer Gazelle, which is also known as Chinkara is a species of Gazelle native to Iran, Pakistan and India. The name "Jabeer" or "Jabir" is commonly used in the southern parts of Iran and as an environmental concern, we've named our project aftet this animal.

What is this model for?

This model is a general purpose and multilingual model. It's up to your creativity to make suitable for different tasks.

Is it open source?

Open weights will be available as soon as possible!

Will it always be free?

It will be free as long as we can afford it and we get enough support from our beloved users.

Why should I provide an app name?

It is only for keeping track of how many users we have.

Will our requests be saved on your servers?

No. We won't save your data anywhere.

Can I use this API commercially?

A thousand times, yes.

How can I contribute to this project?

Just take a look at our github page and you can send an email to this address to gain access to the organization!

How will Jabir Project make money?

Currently, we count on you to support us :-)

Is the API OpenAI compatible?

Currently, it's not.

API Documents

/generate endpoint

This endpoint is dedicated to text generation. The text generation process is somewhat similar to most of the other LLM API's and you need an array of messages like the JSON object below:

                    
                        {
                            "messages" : [
                                {"role" : "user", "content" : "YOUR MESSAGE"}
                            ]
                        }
                    
                

after obtaining the API key, you basically need to make a request like the following example:

                    
                        curl --location \
                        --request POST 'https://api.jabirproject.org/generate' \
                        --header 'Content-Type: application/json' \
                        --header 'apikey: Your API Key' \
                        --data-raw '{
                            "messages" : [
                                            {           
                                                "role" : "user",
                                                "content" : "Hi, who are you?"
                                            }
                            ]
                    }'
                    
                

And this is an example python code using requests library. It's been tested on python 3.8+ and worked perfectly.

Sponsors

How can we donate?

It's easy, we have these wallets and you can donate different currencies to the project!

Wallets

How can we become a major sponsor?

If you can financially support our product or provide infrastructure grants for hosting our models, you can contact us at muhammadreza.haghiri@gmail.com and send your proposals.