# AI for Web Devs: Faster Responses with HTTP Streaming

DevFeed: [AI for Web Devs: Faster Responses with HTTP Streaming](<https://devfeed.tech/articles/ai-for-web-devs-faster-responses-with-http-streaming-17708.md>)

Original publisher: [Read original article](<https://austingil.com/ai-for-web-devs-streaming/>)

Author: Austin

Published: 2023-10-24T19:51:38Z

Content type: tutorial

Language: en

Sources: [Back End - Austin Gil](<https://devfeed.tech/sources/back-end-austin-gil.md>)

Topics: [Streaming](<https://devfeed.tech/topics/streaming.md>), [HTTP](<https://devfeed.tech/topics/http.md>), [Qwik](<https://devfeed.tech/topics/qwik.md>), [web applications](<https://devfeed.tech/topics/web-applications.md>), [OpenAI](<https://devfeed.tech/topics/openai.md>), [Artificial Intelligence](<https://devfeed.tech/topics/ai.md>)

Tags: [ai](<https://devfeed.tech/tags/ai.md>), [back-end](<https://devfeed.tech/tags/back-end.md>), [coding](<https://devfeed.tech/tags/coding.md>), [development](<https://devfeed.tech/tags/development.md>), [front-end](<https://devfeed.tech/tags/front-end.md>), [http](<https://devfeed.tech/tags/http.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [js](<https://devfeed.tech/tags/js.md>), [openai](<https://devfeed.tech/tags/openai.md>), [programming](<https://devfeed.tech/tags/programming.md>), [qwik](<https://devfeed.tech/tags/qwik.md>), [software](<https://devfeed.tech/tags/software.md>), [streaming](<https://devfeed.tech/tags/streaming.md>), [web](<https://devfeed.tech/tags/web.md>), [web-applications](<https://devfeed.tech/tags/web-applications.md>), [web-development](<https://devfeed.tech/tags/web-development.md>)

## AI overview

This tutorial explains how to add HTTP streaming to an AI-powered Qwik application. It discusses the limitations of Qwik route actions for standard streaming and uses middleware and a standard Response object to support incremental responses.

## Source excerpt

Adding HTTP streaming to AI applications can improve perceived performance. This post covers the server side and client side requirements.