The SplitticAPI Library provides a convenient Python interface for interacting with the Splittic API, allowing users to integrate Splittic's AI functionality into their applications. This library is designed to be easy to use and flexible for both asynchronous and synchronous programming.
To install the SplitticAPI Library, use the following command:
pip install SplitticAPI
- Obtain API Key: - Visit the FreeAI discord server. - Retrieve your API key from the #api channel.
- Initialize ChatModule: - Import the ChatModule class from SplitticAPI.meowgpt. - Set the global API key using ChatModule.initialize(api_key).
- Create a Chat Instance: - Create a new chat instance using ChatModule.create_chat(api_key). - Each instance automatically generates a unique chat ID.
- Send Messages: - Use the reply(message) method to send a synchronous message and get a reply. - Optionally, use the async_reply(message) method for asynchronous interactions.
from SplitticAPI.meowgpt import ChatModule
# Set the global API key
api_key = "your_api_key_here"
ChatModule.initialize(api_key)
# Create a ChatModule instance with a unique chat ID
chat_instance = ChatModule.create_chat(api_key)
# Send a synchronous message and get a reply
def main():
reply = chat_instance.reply("Hi")
print(reply)
# Run the program
if __name__ == "__main__":
main()
For more detailed information, refer to the official Splittic API documentation.
This library is released under the MIT License. Feel free to use, modify, and distribute it according to your needs.