Get Started in 15 Minutes
1. Sign Up on OpenAI platform
2. Obtain your API Key
3. Install SDK via package manager
4. Make your first API call
```python
import openaio3
client = openaio3.Client(api_key='YOUR_API_KEY')
response = client.reason('Explain quantum computing in simple terms')
print(response.answer)
```