SuperMe SDK
Python client for the SuperMe AI API with an OpenAI-compatible interface.
Installation
Quick start
Get your API key at superme.ai/settings → API Keys.
from superme_sdk import SuperMeClient
client = SuperMeClient(api_key="your-superme-api-key")
# ask a question to a user's AI
answer = client.ask("What is your take on product-market fit?", username="ludo")
print(answer)
# look up a profile
profile = client.get_profile("ludo")
# get perspectives from multiple people at once
result = client.perspective_search("What is the best growth channel for B2B?")
print(result["answer"])
API Reference
- Client — main
SuperMeClientclass - Models — response data models (
StreamEvent,ChatCompletion, …) - Auth — token helpers
- Chat — OpenAI-compatible chat interface
- Services — Profiles, Conversations, Groups, Companies & Roles, Interviews, Content, Social