1
stars
262
commits
TypeScript
primary language
May 28, 2026
updated
FakeSeek is a browser-first AI workspace for chat, search-assisted reasoning, image generation, and fine-tuning dataset workflows. The frontend stores conversations and presets locally, while the Cloudflare Worker provides optional hosted API routes for search, MCP tools, OpenAI-compatible proxying, logs, and long-running research workflows.
/api, /logs, /mcp, and OpenAI-compatible /api/v1/api/v1 proxy and the default OpenRouter modelBuild the frontend with:
npm run build
Deploy with Wrangler after configuring the Worker bindings in wrangler.toml and the required secrets.
GOOGLE_API_KEY: API key for Google Search APIGOOGLE_CSE_CX: Custom search engine ID for Google Search APIOPENROUTER_API_KEY: API key used by the hosted /api/v1/chat/completions and /api/v1/responses proxy routesOPENROUTER_BASE_URL: Optional OpenAI-compatible base URL for the hosted proxy routes. Defaults to https://openrouter.ai/api/v1OPENROUTER_MODEL: Optional fallback model for hosted proxy routes when a request does not provide modelOPENAI_API_KEY: API key used by Cloudflare Workflows research tasksOPENAI_BASE_URL: Optional OpenAI-compatible base URL for Cloudflare Workflows research tasksOPENAI_MODEL: Optional model for Cloudflare Workflows research tasksFALLBACK_API_KEY: Optional API key for the workflow fallback model providerFALLBACK_BASE_URL: Optional base URL for the workflow fallback model providerFALLBACK_MODEL: Optional fallback model for workflow retriesClient-side presets can also point directly at a user-provided OpenAI-compatible API base URL. When no preset base URL is configured, the app uses the deployed Worker proxy at /api/v1.
If no preset has been created or selected, normal chat sends a non-secret placeholder API key and an empty model value to the hosted Worker proxy. The placeholder only satisfies the browser SDK credential check; the Worker still uses OPENROUTER_API_KEY server-side and chooses the model from OPENROUTER_MODEL or its server-side fallback. This keeps the first-run chat path usable without asking the user for an API key. Search, image search, deep research, image generation, and fine-tuning still depend on their corresponding Worker variables or preset settings.
npm install
npm run dev
Useful checks:
npm run build
npm run lint
262 commits
TypeScript
99.2%
1
stars
262
commits
TypeScript
primary language
May 28, 2026
updated
FakeSeek is a browser-first AI workspace for chat, search-assisted reasoning, image generation, and fine-tuning dataset workflows. The frontend stores conversations and presets locally, while the Cloudflare Worker provides optional hosted API routes for search, MCP tools, OpenAI-compatible proxying, logs, and long-running research workflows.
/api, /logs, /mcp, and OpenAI-compatible /api/v1/api/v1 proxy and the default OpenRouter modelBuild the frontend with:
npm run build
Deploy with Wrangler after configuring the Worker bindings in wrangler.toml and the required secrets.
GOOGLE_API_KEY: API key for Google Search APIGOOGLE_CSE_CX: Custom search engine ID for Google Search APIOPENROUTER_API_KEY: API key used by the hosted /api/v1/chat/completions and /api/v1/responses proxy routesOPENROUTER_BASE_URL: Optional OpenAI-compatible base URL for the hosted proxy routes. Defaults to https://openrouter.ai/api/v1OPENROUTER_MODEL: Optional fallback model for hosted proxy routes when a request does not provide modelOPENAI_API_KEY: API key used by Cloudflare Workflows research tasksOPENAI_BASE_URL: Optional OpenAI-compatible base URL for Cloudflare Workflows research tasksOPENAI_MODEL: Optional model for Cloudflare Workflows research tasksFALLBACK_API_KEY: Optional API key for the workflow fallback model providerFALLBACK_BASE_URL: Optional base URL for the workflow fallback model providerFALLBACK_MODEL: Optional fallback model for workflow retriesClient-side presets can also point directly at a user-provided OpenAI-compatible API base URL. When no preset base URL is configured, the app uses the deployed Worker proxy at /api/v1.
If no preset has been created or selected, normal chat sends a non-secret placeholder API key and an empty model value to the hosted Worker proxy. The placeholder only satisfies the browser SDK credential check; the Worker still uses OPENROUTER_API_KEY server-side and chooses the model from OPENROUTER_MODEL or its server-side fallback. This keeps the first-run chat path usable without asking the user for an API key. Search, image search, deep research, image generation, and fine-tuning still depend on their corresponding Worker variables or preset settings.
npm install
npm run dev
Useful checks:
npm run build
npm run lint
262 commits
TypeScript
99.2%