A Chrome Extension That Talks to Your Database
Cosmos DB Sidekick is a Chrome extension built with the GitHub Copilot SDK and the Azure Cosmos DB JavaScript SDK. The GitHub Copilot SDK lets you embed Copilot's AI capabilities directly into your...

Source: DEV Community
Cosmos DB Sidekick is a Chrome extension built with the GitHub Copilot SDK and the Azure Cosmos DB JavaScript SDK. The GitHub Copilot SDK lets you embed Copilot's AI capabilities directly into your apps — available for Go, Python, TypeScript, and .NET. It sits alongside the Cosmos DB vNext emulator Data Explorer and lets you ask questions in plain English. It writes the queries, runs them, and shows results. No copy-pasting SQL, no switching between tabs. You can find the code on GitHub. Here is a demo of the app in action: What can you actually do with it? Use natural language to query data. In response to something like "Find all orders over $100 from the last month" — the extension figures out the schema, generates a SQL query, runs it against your emulator, and streams back the results. Write data too. Need test data? Ask it to "Add 10 test users to the users container" and it generates realistic documents with proper id fields and partition keys, then upserts them. It knows what y