Skip to content

This repository contains the Python library for ProgressiveAI, a powerful tool for interacting with AI Models. The library provides a simple and intuitive interface for sending requests to ProgressiveAI's AI Models and processing their responses.

License

Notifications You must be signed in to change notification settings

ProgressiveAI/progressiveai-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProgressiveAI Python Library

Welcome to the official ProgressiveAI Python Library! This library allows you to easily connect with ProgressiveAI's powerful AI Models and integrate them into your Python projects.

Installation

You can install the library using pip:

pip install progressiveai

Getting Started

# Call the official ProgressiveAI Python Library
# From the "progressiveai" library, import the "Chat" class to create a connection with ProgressiveAI's AI Models
from progressiveai import Chat

# Create a chat
chat = Chat(
    # Input your ProgressiveAI API Key
    api_key="keyid-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    text="Hello, AI!",  # Enter a question of your choice
    model="wispar"  # Mention the AI Model you want to use. Currently, we offer "WISPAR Lite", and soon "WISPAR" will also be available.
)

# Get AI response
# Fetch a response from the AI Model; if not included, the request will not be submitted and processed
response = chat.get_response()
print(response)  # Print the AI's response

Make sure to replace "keyid-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" with your actual ProgressiveAI API key.

Help and Support

If you need help or have any questions, feel free to reach out to us:

We're here to help you make the most of ProgressiveAI's AI capabilities!

About

This repository contains the Python library for ProgressiveAI, a powerful tool for interacting with AI Models. The library provides a simple and intuitive interface for sending requests to ProgressiveAI's AI Models and processing their responses.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages