AI Web Based AI Tool

What is WindowAI and what can I do with it?
WindowAI is a browser extension that lets you configure and use AI models directly on the web. You control which model you use, choosing from OpenAI, Google, Anthropic, Together, Cohere, or even an AI running on your computer for privacy. No API keys are required to work with WindowAI, and you can save and review your conversation history to reference later or train your own AI models.
Do I need API keys to use WindowAI?
No. WindowAI is designed to work without requiring API keys. You configure and use the models directly within the extension, including the option to run private, locally hosted models.
Can I use local or private AI models with WindowAI?
Yes. WindowAI supports using models running on your own computer for enhanced privacy, in addition to cloud-based providers.
Does WindowAI save my chat history and can I use it to train models?
Yes. The extension keeps a history of all messages you send and receive, and you can use that history to train your own AI models.
How do I get started with WindowAI?
- Get the extension from the appropriate store or source
- Check out the docs to learn how to configure your models
- Join the community and follow the latest announcements for updates
Is there a code example or API for streaming responses with WindowAI?
Yes. You can stream a response using code like:
await window.ai.generateText(
{
prompt: "Hello world!"
},
{
onStreamResult: (res) => console.log(res.text)
}
)
This demonstrates how streaming results can be handled in real time.






























