carter-py
Prerequisites
Installation
The Carter Object
from carterpy import Carter
# Replace YOUR_API_KEY with your actual API key
carter = Carter("YOUR_API_KEY")
# Send a message to the API
response = carter.say("Hello, world!", "player123")
# Print the response text
print(response.output_text)Async
Speak
Last updated