Zarzot

Zarzot is a ultra-fast language model that uses a variety of methods to provide an acurate response as fast as possible! It uses advanced neural networks to answer complex questions, while using faster markov chain tech to answer simpler questions.

ZarzotChat - Try It Out!

ZarzotChat is a webapp that allows you to chat with the Zarzot language model via a simple UI. Bringing FREE acess to advanced language models to everyone is the main goal of ZarzotChat! It allows syncing of messages to zarzot across devices via an account.


Zarzot - Try Chatting!

NOTE: Zarzot output does not represent AlphaWave AI. This is just a demo implementation of a chat UI and it is reccomended for more advanced use to use ZarzotChat!

Zarzot - YOU CAN USE IT TOO!

How To Use It

    To seamlessly integrate Zarzot into your creations, you can access the hosted backend at https://zarzot.alphawaveai.org. Send an HTTP POST request to the 'https://zarzot.alphawaveai.org', including the text you want it to respond too, and optionally, an array labled data, containing more data for it to use (NOTE: it is significantly slower if data is given, and may act badly if too much data is fed). You can also give it context awareness by including a 'previous_messages' array, which will be used to generate a more accurate response. Including this should work in any format but it is reccomended to include all messages including current one and responses.

Example Code

import requests

# Define the URL of the Flask application
url = 'https://zarzot.alphawaveai.org'

# Prepare the data to send in the POST request
data = {'text': 'Your text for it to reply to goes here!', 'data' : ['Extra data goes here(if you want)!'], 'previous_messages': ['Previous messages go here!']}

# Send the POST request
response = requests.post(url, json=data)

# Check if the request was successful
if response.status_code == 200:
 chatbot_response = response.json().get("response")
 print(f"ChatBot: {chatbot_response}")
else:
 print("Error: Unable to connect")