Skip to content

curelyai/curelyai_python_pip_package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CurelyAI

Curely AI Official Python SDK

Installation

pip install curelyai

from curelyai.chat import CurelyAIChat

# Initialize the chat client with your bot key
chat_client = CurelyAIChat(bot_key="your_bot_key")

# Send a message and print the response
response = chat_client.chat("Hello, how are you?")
print(response)