What is the best REST API pattern for AI chat apps?
The most common pattern is a conversation resource with message endpoints. Create a thread, post messages to it, and fetch the history when needed. That keeps state easy to manage.
The most common pattern is a conversation resource with message endpoints. Create a thread, post messages to it, and fetch the history when needed. That keeps state easy to manage.