login or sign-up
comparison


HurLLM is a proprietary pre-trained Artificial Intelligence model for LLM (Large Language Model) with Transformers technology. It uses a parameter base trained through August 2023 and has fine-tuning added monthly thereafter. The HurLLM code library algorithm splits its processing between the local machine and the remote server hosting the model parameters. Floating point weights are read remotely via API and interpreted locally on your local machine, making it possible to run the code on any machine with 4 Gigabytes or more of RAM memory without using GPU and maintaining the privacy of the data of the user that are processed on the client hardware. It is a closed source model with thirty free messages to test in the trial version. The paid version has no usage or availability limitations, allowing the user to make as many requests as he wants without changing the license price, which is fixed at $2.50 (two dollars and fifty cents/month) without readjustments.


Installation:

pip install hurllm
			

Example of use:

from hurllm import HurLLM

hurllm = HurLLM(API_KEY='YOUR_API_KEY')
answer = hurllm.conversation(prompt='Hello! Please tell me the names of three Star Wars characters.')
print(answer)
			

Output:

Sure, here are three popular Star Wars characters:

* **Darth Vader** is the iconic villain of the Star Wars franchise.
He is a former Jedi Knight who turned to the dark side of the Force.
Darth Vader is known for his imposing presence, his black armor, and his breathing mask.
* **Luke Skywalker** is the hero of the original Star Wars trilogy.
He is a young farmboy who is destined to become a Jedi Knight.
Luke Skywalker is known for his courage, his determination, and his ability to use the Force.
* **Princess Leia Organa** is a princess of the planet Alderaan and a leader of the Rebel Alliance.
She is known for her intelligence, her bravery, and her commitment to fighting for freedom.

These are just a few of the many iconic Star Wars characters.
The franchise has introduced fans to a wide range of heroes, villains,
and droids, all of whom have their own unique stories and personalities.

The three characters I mentioned were randomly selected from a list of Star Wars characters,
but they are also among the most popular characters in the franchise.
Darth Vader is often considered to be the most iconic Star Wars character,
while Luke Skywalker and Princess Leia are also two of the most beloved characters.

I hope this helps! Let me know if you have any other questions.