turboseek: An Open-Source AI Search Engine Inspired by Perplexity
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
turboseek is an innovative open-source AI search engine developed by Nutlope, drawing inspiration from platforms like Perplexity. Built with TypeScript, it leverages advanced LLMs and search APIs to provide comprehensive answers and related follow-up questions. This project offers a robust foundation for anyone interested in building their own AI-powered search solution.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
turboseek is an innovative open-source AI search engine, developed by Nutlope, that aims to replicate the intelligent search experience of platforms like Perplexity. Built primarily with TypeScript and the Next.js app router, it integrates powerful LLMs from Together AI and search capabilities from Exa.ai to deliver concise, context-aware answers. The project provides a clear example of how to combine modern web technologies with advanced AI models to create a dynamic search solution.
Installation
To get turboseek up and running locally, follow these steps:
- Fork or clone the repository:
git clone https://github.com/Nutlope/turboseek.git - Create an account at Together AI (opens in a new tab) for LLM inference.
- Create an account at SERP API (opens in a new tab) or with Azure (Bing Search API (opens in a new tab)) for search capabilities.
- Create an account at Helicone (opens in a new tab) for observability.
- Create a
.envfile based on.example.envand populate it with your API keys. - Run
npm installto install dependencies. - Run
npm run devto start the development server locally.
Examples
turboseek operates through a sophisticated workflow to answer user queries:
- A user submits a question to the engine.
- The system makes a request to a search API (e.g., Bing) to retrieve the top 6 relevant results.
- Text content is scraped from these 6 links and compiled as context.
- An LLM (e.g., OpenAI gpt-oss) processes the user's question along with the gathered context, streaming the answer back to the user.
- Concurrently, another LLM (e.g., Llama 3.1 8B) generates three related follow-up questions for the user.
Why Use
turboseek stands out as an excellent resource for several reasons. It offers a fully open-source implementation of an AI search engine, providing transparency and flexibility for developers. Its architecture demonstrates the integration of cutting-edge technologies like Next.js, Together AI, and Exa.ai, making it a valuable learning tool. Furthermore, the project includes a detailed tutorial (opens in a new tab) on how to build such an engine, making it accessible for those looking to understand or extend AI search capabilities. Whether you're building a new search solution or exploring advanced RAG techniques, turboseek provides a solid starting point.
Links
Explore turboseek further:
- GitHub Repository (opens in a new tab)
- Live Demo (opens in a new tab)
- Building Tutorial (opens in a new tab)
Related repositories
Similar repositories that may be relevant next.
Agent-Memory: Persistent Memory for AI Coding Agents
August 16, 2026
Agent-Memory provides persistent memory for AI coding agents, ensuring they remember past interactions and learned patterns across sessions. Built on the iii engine, it eliminates the need for re-explaining context, significantly improving agent efficiency and reducing token usage. This solution integrates seamlessly with various agents, offering a robust memory management system.

code-session-memory: Automatic Vector Memory for AI Coding Sessions
August 15, 2026
code-session-memory provides automatic vector memory for various AI coding tools like OpenCode, Claude Code, Cursor, VS Code, Codex, and Gemini CLI. It indexes new messages into a vector database after each AI agent turn, enabling semantic search across all your past coding sessions. This tool ensures memory is shared across different platforms, enhancing developer productivity.

json-render: The Generative UI Framework for Dynamic Interfaces
August 12, 2026
json-render is a powerful Generative UI framework that allows developers to create dynamic, personalized user interfaces from natural language prompts. It ensures reliability by constraining AI-generated output to predefined components and actions, offering a predictable and safe way to build cross-platform UIs.
Cortex-Mem: A Production-Ready Memory Framework for Autonomous AI Systems
August 12, 2026
Cortex-Mem is a production-ready, AI-native memory framework built in Rust, providing intelligent long-term memory for autonomous systems. It features a hierarchical three-tier memory architecture for efficient information management, from extraction and search to automated optimization. This framework empowers AI agents to remember, learn, and personalize interactions across sessions, transforming stateless AI into context-aware partners.
Source repository
Open the original repository on GitHub.
15 counted GitHub visits