├── .editorconfig ├── .gitignore ├── .prettierrc.json ├── assets ├── employee-handbook.txt └── images │ └── langbase.png ├── examples ├── agents │ ├── .env.example │ ├── .gitignore │ ├── .prettierrc │ ├── agent-run-stream.ts │ ├── agent-run.ts │ ├── package.json │ └── pnpm-lock.yaml ├── ai-chatbot │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── ai-discord-bot │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.json │ ├── LICENSE │ ├── README.md │ ├── eslint.config.js │ ├── example.dev.vars │ ├── package.json │ ├── src │ │ ├── commands.js │ │ ├── discord.ts │ │ ├── index.ts │ │ ├── langbase.ts │ │ ├── register.js │ │ └── unregister.js │ ├── tsconfig.json │ └── wrangler.toml ├── ai-drug-assistant │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── ai-email-agent │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── langbase │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── provider.tsx │ ├── components │ │ ├── agent-page.tsx │ │ ├── display-steps.tsx │ │ ├── email-input.tsx │ │ ├── header.tsx │ │ ├── ui │ │ │ ├── anchor.tsx │ │ │ ├── button.tsx │ │ │ ├── icons.tsx │ │ │ └── sonner.tsx │ │ ├── use-cases.tsx │ │ └── welcome.tsx │ ├── hooks │ │ └── use-langbase.ts │ ├── lib │ │ ├── hooks │ │ │ └── use-enter-submit.tsx │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── utils │ │ └── is-object-empty.ts ├── ai-master-chef │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── ai-translator │ ├── .env.example │ ├── .gitignore │ ├── app │ │ ├── api │ │ │ └── generate │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── constants.tsx │ │ ├── header.tsx │ │ ├── icon-close.tsx │ │ ├── icon-copy.tsx │ │ ├── language.tsx │ │ ├── message.tsx │ │ ├── opening.tsx │ │ ├── translator.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ └── icons.tsx │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── _headers │ │ ├── ai-translator.jpg │ │ ├── next.svg │ │ └── vercel.svg │ ├── readme.md │ ├── tailwind.config.ts │ └── tsconfig.json ├── api-sec-consultant │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── api │ └── dynamically-pass-llm-key.js ├── ascii-software-architect │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── ask-docs-rag │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ ├── suggestions.tsx │ │ ├── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ │ └── welcome.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── career-prep-coach │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── memory-sidebar.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── popover.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── cefr-level-assessment-bot │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── code-alchemist │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── generate │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── provider.tsx │ ├── components.json │ ├── components │ │ ├── alchemist-page.tsx │ │ ├── chat-message.tsx │ │ ├── footer.tsx │ │ ├── header.tsx │ │ ├── loading.tsx │ │ ├── magicui │ │ │ └── blur-fade.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ ├── recent-chats.tsx │ │ ├── sandbox.tsx │ │ ├── skeleton.tsx │ │ ├── switch.tsx │ │ ├── ui │ │ │ ├── anchor.tsx │ │ │ ├── button.tsx │ │ │ ├── icon-langbase.tsx │ │ │ ├── iconists │ │ │ │ ├── icon-chat.tsx │ │ │ │ ├── icon-code.tsx │ │ │ │ ├── icon-command.tsx │ │ │ │ ├── icon-db.tsx │ │ │ │ ├── icon-docs.tsx │ │ │ │ ├── icon-fork.tsx │ │ │ │ ├── icon-github.tsx │ │ │ │ ├── icon-sparkle.tsx │ │ │ │ └── icon-x.tsx │ │ │ ├── sonner.tsx │ │ │ ├── spinner.tsx │ │ │ ├── textarea.tsx │ │ │ └── theme.tsx │ │ ├── use-cases.tsx │ │ └── welcome.tsx │ ├── hooks │ │ └── use-langbase.ts │ ├── lib │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── utils │ │ ├── run-agents.ts │ │ └── validate-request-body.ts ├── dev-screener │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── documents-qna-rag │ ├── .env.local.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── generate │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components.json │ ├── components │ │ ├── langbase │ │ │ └── docs-qna.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── header.tsx │ │ │ ├── icons.tsx │ │ │ └── input.tsx │ ├── lib │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── tailwind.config.ts │ └── tsconfig.json ├── email-agent-node │ ├── .env.example │ ├── .gitignore │ ├── agents.ts │ ├── index.ts │ ├── package.json │ ├── pnpm-lock.yaml │ └── readme.md ├── email-agent-python │ ├── .env.example │ ├── .gitignore │ ├── agent.py │ └── readme.md ├── excel-master │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── expert-proofreader │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── geosimcities │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── assets │ │ └── cover.jpg │ ├── netlify.toml │ ├── netlify │ │ ├── edge-functions │ │ │ └── rewiter.ts │ │ └── functions │ │ │ ├── geocities.mts │ │ │ ├── geoimage.mts │ │ │ └── hello.mts │ ├── package.json │ └── public │ │ ├── index.html │ │ └── robots.txt ├── github-docs-sync-script │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── package.json │ └── script.js ├── js-tutor │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── newsgpt │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ ├── Cloudflare_Logo.svg │ │ │ └── react.svg │ │ ├── components │ │ │ └── newsgpt │ │ │ │ ├── prompt-panel.tsx │ │ │ │ ├── summary-box-skeleton.tsx │ │ │ │ └── summary-box.tsx │ │ ├── index.css │ │ ├── lib │ │ │ └── utils.ts │ │ ├── main.tsx │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.node.tsbuildinfo │ ├── tsconfig.server.json │ ├── tsconfig.worker.json │ ├── vite.config.d.ts │ ├── vite.config.js │ ├── vite.config.ts │ ├── vitest.config.d.mts │ ├── vitest.config.mjs │ ├── worker-configuration.d.ts │ ├── worker │ │ ├── agent.d.ts │ │ ├── agent.ts │ │ ├── index.d.ts │ │ ├── index.ts │ │ ├── langbase.d.ts │ │ └── langbase.ts │ └── wrangler.jsonc ├── nextjs-basic │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── actions.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── tailwind.config.ts │ └── tsconfig.json ├── notedash │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc.json │ ├── README.md │ ├── app │ │ ├── api │ │ │ ├── chat │ │ │ │ └── route.tsx │ │ │ ├── summary │ │ │ │ └── route.tsx │ │ │ └── transcribe │ │ │ │ └── route.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── provider.tsx │ ├── components │ │ ├── hooks │ │ │ ├── use-audio-upload.tsx │ │ │ ├── use-chat.tsx │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-speech-recognition.tsx │ │ ├── markdown-render.tsx │ │ ├── markdown.tsx │ │ ├── meeting-recorder.tsx │ │ ├── navbar.tsx │ │ ├── spinner.tsx │ │ ├── types.ts │ │ └── ui │ │ │ ├── Code.tsx │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── anchor.tsx │ │ │ ├── audio-upload-interface.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── bulb.tsx │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── circle-separator.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── hr.tsx │ │ │ ├── iconists │ │ │ ├── Icon-system-prompt.tsx │ │ │ ├── icon-add-documents.tsx │ │ │ ├── icon-add.tsx │ │ │ ├── icon-administration.tsx │ │ │ ├── icon-analytics.tsx │ │ │ ├── icon-api.tsx │ │ │ ├── icon-arrow-left.tsx │ │ │ ├── icon-arrow-right-left.tsx │ │ │ ├── icon-arrow-right.tsx │ │ │ ├── icon-arrow-top-bottom.tsx │ │ │ ├── icon-arrow-up-right.tsx │ │ │ ├── icon-arrow.tsx │ │ │ ├── icon-arrows-out.tsx │ │ │ ├── icon-billing-light.tsx │ │ │ ├── icon-billing.tsx │ │ │ ├── icon-blog.tsx │ │ │ ├── icon-bot.tsx │ │ │ ├── icon-bug.tsx │ │ │ ├── icon-changelog.tsx │ │ │ ├── icon-chat.tsx │ │ │ ├── icon-check-circle.tsx │ │ │ ├── icon-check.tsx │ │ │ ├── icon-clipboard.tsx │ │ │ ├── icon-close.tsx │ │ │ ├── icon-command-box.tsx │ │ │ ├── icon-command.tsx │ │ │ ├── icon-community-light.tsx │ │ │ ├── icon-community.tsx │ │ │ ├── icon-company.tsx │ │ │ ├── icon-completion.tsx │ │ │ ├── icon-contact-light.tsx │ │ │ ├── icon-contact-us.tsx │ │ │ ├── icon-copied.tsx │ │ │ ├── icon-copy.tsx │ │ │ ├── icon-courses.tsx │ │ │ ├── icon-cross.tsx │ │ │ ├── icon-customer-support.tsx │ │ │ ├── icon-date.tsx │ │ │ ├── icon-db.tsx │ │ │ ├── icon-delete.tsx │ │ │ ├── icon-deploy.tsx │ │ │ ├── icon-details.tsx │ │ │ ├── icon-discord.tsx │ │ │ ├── icon-doc-upload.tsx │ │ │ ├── icon-doc.tsx │ │ │ ├── icon-docfile.tsx │ │ │ ├── icon-docs.tsx │ │ │ ├── icon-document.tsx │ │ │ ├── icon-documents.tsx │ │ │ ├── icon-dollar.tsx │ │ │ ├── icon-down.tsx │ │ │ ├── icon-download.tsx │ │ │ ├── icon-edit.tsx │ │ │ ├── icon-education.tsx │ │ │ ├── icon-examples.tsx │ │ │ ├── icon-experiments.tsx │ │ │ ├── icon-explore.tsx │ │ │ ├── icon-eye-close.tsx │ │ │ ├── icon-eye-open.tsx │ │ │ ├── icon-feedback.tsx │ │ │ ├── icon-files.tsx │ │ │ ├── icon-finance.tsx │ │ │ ├── icon-fork.tsx │ │ │ ├── icon-functions.tsx │ │ │ ├── icon-github.tsx │ │ │ ├── icon-guides.tsx │ │ │ ├── icon-happy.tsx │ │ │ ├── icon-hash.tsx │ │ │ ├── icon-healthcare.tsx │ │ │ ├── icon-history.tsx │ │ │ ├── icon-info.tsx │ │ │ ├── icon-json-mode.tsx │ │ │ ├── icon-labels.tsx │ │ │ ├── icon-latency.tsx │ │ │ ├── icon-left.tsx │ │ │ ├── icon-legal.tsx │ │ │ ├── icon-link.tsx │ │ │ ├── icon-linkedin.tsx │ │ │ ├── icon-lock.tsx │ │ │ ├── icon-login.tsx │ │ │ ├── icon-marketing.tsx │ │ │ ├── icon-memory.tsx │ │ │ ├── icon-menu-down.tsx │ │ │ ├── icon-meta.tsx │ │ │ ├── icon-minus-circle.tsx │ │ │ ├── icon-minus.tsx │ │ │ ├── icon-new.tsx │ │ │ ├── icon-news.tsx │ │ │ ├── icon-opening.tsx │ │ │ ├── icon-org.tsx │ │ │ ├── icon-out.tsx │ │ │ ├── icon-pipe.tsx │ │ │ ├── icon-pipes.tsx │ │ │ ├── icon-play.tsx │ │ │ ├── icon-playground.tsx │ │ │ ├── icon-plus-circle.tsx │ │ │ ├── icon-plus.tsx │ │ │ ├── icon-pr.tsx │ │ │ ├── icon-prediction.tsx │ │ │ ├── icon-prompt.tsx │ │ │ ├── icon-rag.tsx │ │ │ ├── icon-readme.tsx │ │ │ ├── icon-refresh.tsx │ │ │ ├── icon-requests.tsx │ │ │ ├── icon-reset.tsx │ │ │ ├── icon-retrieval-testing.tsx │ │ │ ├── icon-right-arrows.tsx │ │ │ ├── icon-right.tsx │ │ │ ├── icon-runs.tsx │ │ │ ├── icon-sad.tsx │ │ │ ├── icon-safety.tsx │ │ │ ├── icon-sandbox.tsx │ │ │ ├── icon-save.tsx │ │ │ ├── icon-search.tsx │ │ │ ├── icon-settings-light.tsx │ │ │ ├── icon-settings.tsx │ │ │ ├── icon-sign-out.tsx │ │ │ ├── icon-signup.tsx │ │ │ ├── icon-similar-chunks.tsx │ │ │ ├── icon-solutions.tsx │ │ │ ├── icon-sparkle.tsx │ │ │ ├── icon-table.tsx │ │ │ ├── icon-tech.tsx │ │ │ ├── icon-temparature.tsx │ │ │ ├── icon-terminal.tsx │ │ │ ├── icon-todo.tsx │ │ │ ├── icon-tokens.tsx │ │ │ ├── icon-up-down.tsx │ │ │ ├── icon-up.tsx │ │ │ ├── icon-usage.tsx │ │ │ ├── icon-user-light.tsx │ │ │ ├── icon-user.tsx │ │ │ ├── icon-variable.tsx │ │ │ ├── icon-video.tsx │ │ │ ├── icon-warn.tsx │ │ │ ├── icon-x.tsx │ │ │ └── info-circle.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── recording-interface.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── shimmer-button.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider-temperature.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── text-input-interface.tsx │ │ │ ├── textarea-autosize.tsx │ │ │ ├── textarea.tsx │ │ │ ├── theme.tsx │ │ │ ├── tip.tsx │ │ │ ├── toast.tsx │ │ │ ├── toggle-enable.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── lib │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ └── tsconfig.json ├── product-review-generator │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── pseudocode-generator │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── rag-chatbot │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-message-actions.tsx │ │ ├── chat-message.tsx │ │ ├── chatbot-page.tsx │ │ ├── header.tsx │ │ ├── markdown.tsx │ │ ├── opening.tsx │ │ ├── prompt-form.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── codeblock.tsx │ │ │ ├── icons.tsx │ │ │ ├── separator.tsx │ │ │ └── textarea.tsx │ ├── lib │ │ ├── hooks │ │ │ ├── use-copy-to-clipboard.tsx │ │ │ └── use-enter-submit.tsx │ │ ├── types.ts │ │ └── utils.ts │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── prettier.config.cjs │ ├── public │ │ └── chatbot.jpg │ ├── tailwind.config.ts │ └── tsconfig.json ├── rag-memory-agent │ ├── .env.example │ ├── .gitignore │ ├── .prettierrc │ ├── agent │ │ ├── agent-create.ts │ │ ├── memory-create.ts │ │ ├── memory-retrieve.ts │ │ ├── rag.ts │ │ └── upload.ts │ ├── data │ │ ├── doc.pdf │ │ └── notes.md │ ├── package.json │ ├── pnpm-lock.yaml │ └── readme.md ├── resume-tailor │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── optimize │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── provider.tsx │ ├── components.json │ ├── components │ │ ├── actions.ts │ │ ├── config.tsx │ │ ├── hero.tsx │ │ ├── markdown-render.tsx │ │ ├── markdown.tsx │ │ ├── scripts.tsx │ │ ├── spinner.tsx │ │ ├── ui │ │ │ ├── Code.tsx │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── anchor.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── bulb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── circle-separator.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── hr.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── select.tsx │ │ │ ├── sheet.tsx │ │ │ ├── shimmer-button.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider-temperature.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea-autosize.tsx │ │ │ ├── textarea.tsx │ │ │ ├── theme.tsx │ │ │ ├── tip.tsx │ │ │ ├── toast.tsx │ │ │ ├── toggle-enable.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ │ └── upload.tsx │ ├── lib │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ └── tsconfig.json ├── slack-agent │ ├── .editorconfig │ ├── .env.example │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ └── settings.json │ ├── components.json │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ │ ├── icon.jpeg │ │ └── langbase.svg │ ├── readme.md │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── agent.tsx │ │ │ ├── landing.tsx │ │ │ └── ui │ │ │ │ ├── accordion.tsx │ │ │ │ ├── alert-dialog.tsx │ │ │ │ ├── alert.tsx │ │ │ │ ├── aspect-ratio.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── breadcrumb.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── calendar.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── carousel.tsx │ │ │ │ ├── chart.tsx │ │ │ │ ├── checkbox.tsx │ │ │ │ ├── collapsible.tsx │ │ │ │ ├── command.tsx │ │ │ │ ├── context-menu.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── drawer.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── hover-card.tsx │ │ │ │ ├── input-otp.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── label.tsx │ │ │ │ ├── menubar.tsx │ │ │ │ ├── navigation-menu.tsx │ │ │ │ ├── pagination.tsx │ │ │ │ ├── popover.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── radio-group.tsx │ │ │ │ ├── resizable.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── select.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── sheet.tsx │ │ │ │ ├── sidebar.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── slider.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── switch.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── tabs.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ ├── toggle-group.tsx │ │ │ │ ├── toggle.tsx │ │ │ │ └── tooltip.tsx │ │ ├── hooks │ │ │ └── use-mobile.ts │ │ ├── lib │ │ │ └── utils.ts │ │ ├── main.tsx │ │ └── styles.css │ ├── test │ │ ├── env.d.ts │ │ ├── index.spec.ts │ │ └── tsconfig.json │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── tsconfig.server.json │ ├── vite.config.js │ ├── vitest.config.d.mts │ ├── vitest.config.mjs │ ├── vitest.config.mts │ ├── worker-configuration.d.ts │ ├── worker │ │ ├── agent.ts │ │ ├── index.ts │ │ └── langbase.ts │ └── wrangler.jsonc ├── tech-guide-writer │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── generate-guide │ │ │ │ └── route.ts │ │ ├── components │ │ │ ├── code-block.tsx │ │ │ ├── learn-more.tsx │ │ │ ├── markdown.tsx │ │ │ └── message.tsx │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ ├── tech-guide-writer.jpg │ │ └── vercel.svg │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── wrangler.toml ├── text-summarizer │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── generate-summary │ │ │ │ └── route.ts │ │ ├── components │ │ │ ├── code-block.tsx │ │ │ ├── markdown.tsx │ │ │ └── message.tsx │ │ ├── data │ │ │ └── index.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ ├── text-summarizer.jpg │ │ └── vercel.svg │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── wrangler.toml ├── therapeutic-assistant │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── chat │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── provider.tsx │ ├── components.json │ ├── components │ │ ├── markdown-render.tsx │ │ ├── markdown.tsx │ │ └── ui │ │ │ ├── Code.tsx │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── anchor.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── bulb.tsx │ │ │ ├── button.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── circle-separator.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── hr.tsx │ │ │ ├── icon-help.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── select.tsx │ │ │ ├── sheet.tsx │ │ │ ├── shimmer-button.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider-temperature.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── textarea-autosize.tsx │ │ │ ├── textarea.tsx │ │ │ ├── theme.tsx │ │ │ ├── tip.tsx │ │ │ ├── toast.tsx │ │ │ ├── toggle-enable.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ ├── lib │ │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ └── tsconfig.json └── video-wisdom │ ├── .env.local.example │ ├── .gitignore │ ├── README.md │ ├── app │ ├── api │ │ └── langbase │ │ │ └── wisdom │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── provider.tsx │ ├── components │ ├── common │ │ ├── codeblock.tsx │ │ ├── header.tsx │ │ └── markdown.tsx │ ├── homepage │ │ ├── AIInteraction.tsx │ │ ├── Generate.tsx │ │ ├── Title.tsx │ │ ├── VideoHandler.tsx │ │ ├── VideoInfoAndControl.tsx │ │ ├── YTLoaded.tsx │ │ ├── YTVideoSelect.tsx │ │ ├── YouTubeEmbedSkeleton.tsx │ │ └── YoutTubeEmbed.tsx │ └── ui │ │ ├── Code.tsx │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── anchor.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── bulb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── circle-separator.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hover-card.tsx │ │ ├── hr.tsx │ │ ├── iconists │ │ ├── Icon-system-prompt.tsx │ │ ├── icon-add-documents.tsx │ │ ├── icon-add.tsx │ │ ├── icon-administration.tsx │ │ ├── icon-analytics.tsx │ │ ├── icon-api.tsx │ │ ├── icon-arrow-left.tsx │ │ ├── icon-arrow-right-left.tsx │ │ ├── icon-arrow-right.tsx │ │ ├── icon-arrow-top-bottom.tsx │ │ ├── icon-arrow-up-right.tsx │ │ ├── icon-arrow.tsx │ │ ├── icon-arrows-out.tsx │ │ ├── icon-billing-light.tsx │ │ ├── icon-billing.tsx │ │ ├── icon-blog.tsx │ │ ├── icon-bot.tsx │ │ ├── icon-bug.tsx │ │ ├── icon-changelog.tsx │ │ ├── icon-chat.tsx │ │ ├── icon-check-circle.tsx │ │ ├── icon-check.tsx │ │ ├── icon-clipboard.tsx │ │ ├── icon-close.tsx │ │ ├── icon-command-box.tsx │ │ ├── icon-command.tsx │ │ ├── icon-community-light.tsx │ │ ├── icon-community.tsx │ │ ├── icon-company.tsx │ │ ├── icon-completion.tsx │ │ ├── icon-contact-light.tsx │ │ ├── icon-contact-us.tsx │ │ ├── icon-copied.tsx │ │ ├── icon-copy.tsx │ │ ├── icon-courses.tsx │ │ ├── icon-cross.tsx │ │ ├── icon-customer-support.tsx │ │ ├── icon-date.tsx │ │ ├── icon-db.tsx │ │ ├── icon-delete.tsx │ │ ├── icon-deploy.tsx │ │ ├── icon-details.tsx │ │ ├── icon-discord.tsx │ │ ├── icon-doc-upload.tsx │ │ ├── icon-doc.tsx │ │ ├── icon-docfile.tsx │ │ ├── icon-docs.tsx │ │ ├── icon-document.tsx │ │ ├── icon-documents.tsx │ │ ├── icon-dollar.tsx │ │ ├── icon-down.tsx │ │ ├── icon-download.tsx │ │ ├── icon-edit.tsx │ │ ├── icon-education.tsx │ │ ├── icon-examples.tsx │ │ ├── icon-experiments.tsx │ │ ├── icon-explore.tsx │ │ ├── icon-eye-close.tsx │ │ ├── icon-eye-open.tsx │ │ ├── icon-feedback.tsx │ │ ├── icon-files.tsx │ │ ├── icon-finance.tsx │ │ ├── icon-fork.tsx │ │ ├── icon-functions.tsx │ │ ├── icon-github.tsx │ │ ├── icon-guides.tsx │ │ ├── icon-happy.tsx │ │ ├── icon-hash.tsx │ │ ├── icon-healthcare.tsx │ │ ├── icon-history.tsx │ │ ├── icon-info.tsx │ │ ├── icon-json-mode.tsx │ │ ├── icon-labels.tsx │ │ ├── icon-latency.tsx │ │ ├── icon-left.tsx │ │ ├── icon-legal.tsx │ │ ├── icon-link.tsx │ │ ├── icon-linkedin.tsx │ │ ├── icon-lock.tsx │ │ ├── icon-login.tsx │ │ ├── icon-marketing.tsx │ │ ├── icon-memory.tsx │ │ ├── icon-menu-down.tsx │ │ ├── icon-meta.tsx │ │ ├── icon-minus-circle.tsx │ │ ├── icon-minus.tsx │ │ ├── icon-new.tsx │ │ ├── icon-news.tsx │ │ ├── icon-opening.tsx │ │ ├── icon-org.tsx │ │ ├── icon-out.tsx │ │ ├── icon-pipe.tsx │ │ ├── icon-pipes.tsx │ │ ├── icon-play.tsx │ │ ├── icon-playground.tsx │ │ ├── icon-plus-circle.tsx │ │ ├── icon-plus.tsx │ │ ├── icon-pr.tsx │ │ ├── icon-prediction.tsx │ │ ├── icon-prompt.tsx │ │ ├── icon-rag.tsx │ │ ├── icon-readme.tsx │ │ ├── icon-refresh.tsx │ │ ├── icon-requests.tsx │ │ ├── icon-reset.tsx │ │ ├── icon-retrieval-testing.tsx │ │ ├── icon-right-arrows.tsx │ │ ├── icon-right.tsx │ │ ├── icon-runs.tsx │ │ ├── icon-sad.tsx │ │ ├── icon-safety.tsx │ │ ├── icon-sandbox.tsx │ │ ├── icon-save.tsx │ │ ├── icon-search.tsx │ │ ├── icon-settings-light.tsx │ │ ├── icon-settings.tsx │ │ ├── icon-sign-out.tsx │ │ ├── icon-signup.tsx │ │ ├── icon-similar-chunks.tsx │ │ ├── icon-solutions.tsx │ │ ├── icon-sparkle.tsx │ │ ├── icon-table.tsx │ │ ├── icon-tech.tsx │ │ ├── icon-temparature.tsx │ │ ├── icon-terminal.tsx │ │ ├── icon-todo.tsx │ │ ├── icon-tokens.tsx │ │ ├── icon-up-down.tsx │ │ ├── icon-up.tsx │ │ ├── icon-usage.tsx │ │ ├── icon-user-light.tsx │ │ ├── icon-user.tsx │ │ ├── icon-variable.tsx │ │ ├── icon-video.tsx │ │ ├── icon-warn.tsx │ │ ├── icon-x.tsx │ │ └── info-circle.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── sheet.tsx │ │ ├── shimmer-button.tsx │ │ ├── skeleton.tsx │ │ ├── slider-temperature.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── textarea-autosize.tsx │ │ ├── textarea.tsx │ │ ├── theme.tsx │ │ ├── tip.tsx │ │ ├── toast.tsx │ │ ├── toggle-enable.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ ├── lib │ ├── hooks │ │ └── use-copy-to-clipboard.tsx │ └── utils.ts │ ├── next.config.mjs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.mjs │ ├── public │ ├── next.svg │ └── vercel.svg │ ├── shad-tailwind.config.js │ ├── tailwind.config.ts │ ├── tsconfig.json │ └── wrangler.toml ├── license.md ├── package.json ├── pnpm-lock.yaml ├── readme.md └── starters └── documents-qna-rag ├── .env.local.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── langbase │ └── docs-qna.tsx └── ui │ ├── button.tsx │ ├── header.tsx │ ├── icons.tsx │ └── input.tsx ├── lib └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /assets/employee-handbook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/assets/employee-handbook.txt -------------------------------------------------------------------------------- /assets/images/langbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/assets/images/langbase.png -------------------------------------------------------------------------------- /examples/agents/.env.example: -------------------------------------------------------------------------------- 1 | # Get it from https://langbase.com/settings/keys 2 | LANGBASE_API_KEY= 3 | -------------------------------------------------------------------------------- /examples/agents/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/.gitignore -------------------------------------------------------------------------------- /examples/agents/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/.prettierrc -------------------------------------------------------------------------------- /examples/agents/agent-run-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/agent-run-stream.ts -------------------------------------------------------------------------------- /examples/agents/agent-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/agent-run.ts -------------------------------------------------------------------------------- /examples/agents/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/package.json -------------------------------------------------------------------------------- /examples/agents/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/agents/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/ai-chatbot/.env.example: -------------------------------------------------------------------------------- 1 | # Enter your Langbase Pipe API key here 2 | LANGBASE_API_KEY= 3 | -------------------------------------------------------------------------------- /examples/ai-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /examples/ai-chatbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/.gitignore -------------------------------------------------------------------------------- /examples/ai-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/README.md -------------------------------------------------------------------------------- /examples/ai-chatbot/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/ai-chatbot/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/app/favicon.ico -------------------------------------------------------------------------------- /examples/ai-chatbot/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/app/globals.css -------------------------------------------------------------------------------- /examples/ai-chatbot/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/app/layout.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/app/page.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/chat-message.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/chatbot-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/chatbot-page.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/header.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/markdown.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/opening.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/prompt-form.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/ai-chatbot/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/lib/types.ts -------------------------------------------------------------------------------- /examples/ai-chatbot/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/lib/utils.ts -------------------------------------------------------------------------------- /examples/ai-chatbot/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/next.config.js -------------------------------------------------------------------------------- /examples/ai-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/package.json -------------------------------------------------------------------------------- /examples/ai-chatbot/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/ai-chatbot/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/postcss.config.js -------------------------------------------------------------------------------- /examples/ai-chatbot/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/prettier.config.cjs -------------------------------------------------------------------------------- /examples/ai-chatbot/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/ai-chatbot/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ai-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-chatbot/tsconfig.json -------------------------------------------------------------------------------- /examples/ai-discord-bot/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .dev.vars 4 | .wrangler 5 | -------------------------------------------------------------------------------- /examples/ai-discord-bot/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /examples/ai-discord-bot/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /examples/ai-discord-bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/LICENSE -------------------------------------------------------------------------------- /examples/ai-discord-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/README.md -------------------------------------------------------------------------------- /examples/ai-discord-bot/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/eslint.config.js -------------------------------------------------------------------------------- /examples/ai-discord-bot/example.dev.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/example.dev.vars -------------------------------------------------------------------------------- /examples/ai-discord-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/package.json -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/commands.js -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/discord.ts -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/index.ts -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/langbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/langbase.ts -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/register.js -------------------------------------------------------------------------------- /examples/ai-discord-bot/src/unregister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/src/unregister.js -------------------------------------------------------------------------------- /examples/ai-discord-bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/tsconfig.json -------------------------------------------------------------------------------- /examples/ai-discord-bot/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-discord-bot/wrangler.toml -------------------------------------------------------------------------------- /examples/ai-drug-assistant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/.gitignore -------------------------------------------------------------------------------- /examples/ai-drug-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/README.md -------------------------------------------------------------------------------- /examples/ai-drug-assistant/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/ai-drug-assistant/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/app/favicon.ico -------------------------------------------------------------------------------- /examples/ai-drug-assistant/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/app/globals.css -------------------------------------------------------------------------------- /examples/ai-drug-assistant/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/app/layout.tsx -------------------------------------------------------------------------------- /examples/ai-drug-assistant/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/app/page.tsx -------------------------------------------------------------------------------- /examples/ai-drug-assistant/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/components/header.tsx -------------------------------------------------------------------------------- /examples/ai-drug-assistant/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/components/opening.tsx -------------------------------------------------------------------------------- /examples/ai-drug-assistant/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/lib/types.ts -------------------------------------------------------------------------------- /examples/ai-drug-assistant/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/lib/utils.ts -------------------------------------------------------------------------------- /examples/ai-drug-assistant/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/next.config.js -------------------------------------------------------------------------------- /examples/ai-drug-assistant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/package.json -------------------------------------------------------------------------------- /examples/ai-drug-assistant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/postcss.config.js -------------------------------------------------------------------------------- /examples/ai-drug-assistant/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/prettier.config.cjs -------------------------------------------------------------------------------- /examples/ai-drug-assistant/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/ai-drug-assistant/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ai-drug-assistant/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-drug-assistant/tsconfig.json -------------------------------------------------------------------------------- /examples/ai-email-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/.env.example -------------------------------------------------------------------------------- /examples/ai-email-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/.gitignore -------------------------------------------------------------------------------- /examples/ai-email-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/README.md -------------------------------------------------------------------------------- /examples/ai-email-agent/app/api/langbase/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/api/langbase/route.ts -------------------------------------------------------------------------------- /examples/ai-email-agent/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/favicon.ico -------------------------------------------------------------------------------- /examples/ai-email-agent/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/globals.css -------------------------------------------------------------------------------- /examples/ai-email-agent/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/layout.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/page.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/app/provider.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/agent-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/agent-page.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/header.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/ui/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/ui/anchor.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/ui/sonner.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/use-cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/use-cases.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/components/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/components/welcome.tsx -------------------------------------------------------------------------------- /examples/ai-email-agent/hooks/use-langbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/hooks/use-langbase.ts -------------------------------------------------------------------------------- /examples/ai-email-agent/lib/utils.ts: -------------------------------------------------------------------------------- 1 | export { cn } from 'mxcn'; 2 | -------------------------------------------------------------------------------- /examples/ai-email-agent/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/next.config.mjs -------------------------------------------------------------------------------- /examples/ai-email-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/package.json -------------------------------------------------------------------------------- /examples/ai-email-agent/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/ai-email-agent/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/postcss.config.mjs -------------------------------------------------------------------------------- /examples/ai-email-agent/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/public/next.svg -------------------------------------------------------------------------------- /examples/ai-email-agent/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/public/vercel.svg -------------------------------------------------------------------------------- /examples/ai-email-agent/shad-tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/shad-tailwind.config.js -------------------------------------------------------------------------------- /examples/ai-email-agent/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ai-email-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/tsconfig.json -------------------------------------------------------------------------------- /examples/ai-email-agent/utils/is-object-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-email-agent/utils/is-object-empty.ts -------------------------------------------------------------------------------- /examples/ai-master-chef/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/ai-master-chef/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/.gitignore -------------------------------------------------------------------------------- /examples/ai-master-chef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/README.md -------------------------------------------------------------------------------- /examples/ai-master-chef/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/ai-master-chef/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/app/favicon.ico -------------------------------------------------------------------------------- /examples/ai-master-chef/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/app/globals.css -------------------------------------------------------------------------------- /examples/ai-master-chef/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/app/layout.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/app/page.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/header.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/markdown.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/opening.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/ai-master-chef/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/lib/types.ts -------------------------------------------------------------------------------- /examples/ai-master-chef/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/lib/utils.ts -------------------------------------------------------------------------------- /examples/ai-master-chef/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/next.config.js -------------------------------------------------------------------------------- /examples/ai-master-chef/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/package.json -------------------------------------------------------------------------------- /examples/ai-master-chef/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/postcss.config.js -------------------------------------------------------------------------------- /examples/ai-master-chef/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/prettier.config.cjs -------------------------------------------------------------------------------- /examples/ai-master-chef/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/ai-master-chef/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ai-master-chef/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-master-chef/tsconfig.json -------------------------------------------------------------------------------- /examples/ai-translator/.env.example: -------------------------------------------------------------------------------- 1 | # Enter your Langbase Pipe API key here 2 | LANGBASE_AI_PIPE_API_KEY="" 3 | -------------------------------------------------------------------------------- /examples/ai-translator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/.gitignore -------------------------------------------------------------------------------- /examples/ai-translator/app/api/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/app/api/generate/route.ts -------------------------------------------------------------------------------- /examples/ai-translator/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/app/favicon.ico -------------------------------------------------------------------------------- /examples/ai-translator/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/app/globals.css -------------------------------------------------------------------------------- /examples/ai-translator/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/app/layout.tsx -------------------------------------------------------------------------------- /examples/ai-translator/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/app/page.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/constants.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/header.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/icon-close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/icon-close.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/icon-copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/icon-copy.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/language.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/message.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/opening.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/translator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/translator.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/ai-translator/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/ai-translator/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/next-env.d.ts -------------------------------------------------------------------------------- /examples/ai-translator/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/next.config.js -------------------------------------------------------------------------------- /examples/ai-translator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/package.json -------------------------------------------------------------------------------- /examples/ai-translator/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/ai-translator/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/postcss.config.mjs -------------------------------------------------------------------------------- /examples/ai-translator/public/_headers: -------------------------------------------------------------------------------- 1 | /api/* 2 | Allow: GET, POST 3 | -------------------------------------------------------------------------------- /examples/ai-translator/public/ai-translator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/public/ai-translator.jpg -------------------------------------------------------------------------------- /examples/ai-translator/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/public/next.svg -------------------------------------------------------------------------------- /examples/ai-translator/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/public/vercel.svg -------------------------------------------------------------------------------- /examples/ai-translator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/readme.md -------------------------------------------------------------------------------- /examples/ai-translator/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ai-translator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ai-translator/tsconfig.json -------------------------------------------------------------------------------- /examples/api-sec-consultant/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/api-sec-consultant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/.gitignore -------------------------------------------------------------------------------- /examples/api-sec-consultant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/README.md -------------------------------------------------------------------------------- /examples/api-sec-consultant/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/api-sec-consultant/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/app/favicon.ico -------------------------------------------------------------------------------- /examples/api-sec-consultant/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/app/globals.css -------------------------------------------------------------------------------- /examples/api-sec-consultant/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/app/layout.tsx -------------------------------------------------------------------------------- /examples/api-sec-consultant/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/app/page.tsx -------------------------------------------------------------------------------- /examples/api-sec-consultant/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/components/header.tsx -------------------------------------------------------------------------------- /examples/api-sec-consultant/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/lib/types.ts -------------------------------------------------------------------------------- /examples/api-sec-consultant/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/lib/utils.ts -------------------------------------------------------------------------------- /examples/api-sec-consultant/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/next.config.js -------------------------------------------------------------------------------- /examples/api-sec-consultant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/package.json -------------------------------------------------------------------------------- /examples/api-sec-consultant/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/postcss.config.js -------------------------------------------------------------------------------- /examples/api-sec-consultant/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/prettier.config.cjs -------------------------------------------------------------------------------- /examples/api-sec-consultant/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/api-sec-consultant/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/tailwind.config.ts -------------------------------------------------------------------------------- /examples/api-sec-consultant/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api-sec-consultant/tsconfig.json -------------------------------------------------------------------------------- /examples/api/dynamically-pass-llm-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/api/dynamically-pass-llm-key.js -------------------------------------------------------------------------------- /examples/ascii-software-architect/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/ascii-software-architect/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/.gitignore -------------------------------------------------------------------------------- /examples/ascii-software-architect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/README.md -------------------------------------------------------------------------------- /examples/ascii-software-architect/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/app/favicon.ico -------------------------------------------------------------------------------- /examples/ascii-software-architect/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/app/globals.css -------------------------------------------------------------------------------- /examples/ascii-software-architect/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/app/layout.tsx -------------------------------------------------------------------------------- /examples/ascii-software-architect/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/app/page.tsx -------------------------------------------------------------------------------- /examples/ascii-software-architect/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/lib/types.ts -------------------------------------------------------------------------------- /examples/ascii-software-architect/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/lib/utils.ts -------------------------------------------------------------------------------- /examples/ascii-software-architect/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/next.config.js -------------------------------------------------------------------------------- /examples/ascii-software-architect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/package.json -------------------------------------------------------------------------------- /examples/ascii-software-architect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ascii-software-architect/tsconfig.json -------------------------------------------------------------------------------- /examples/ask-docs-rag/.env.example: -------------------------------------------------------------------------------- 1 | # Enter your Langbase Pipe API key here 2 | LANGBASE_PIPE_API_KEY= 3 | -------------------------------------------------------------------------------- /examples/ask-docs-rag/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/.eslintrc.json -------------------------------------------------------------------------------- /examples/ask-docs-rag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/.gitignore -------------------------------------------------------------------------------- /examples/ask-docs-rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/README.md -------------------------------------------------------------------------------- /examples/ask-docs-rag/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/ask-docs-rag/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/app/favicon.ico -------------------------------------------------------------------------------- /examples/ask-docs-rag/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/app/globals.css -------------------------------------------------------------------------------- /examples/ask-docs-rag/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/app/layout.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/app/page.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/chat-message.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/chatbot-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/chatbot-page.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/header.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/markdown.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/opening.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/prompt-form.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/suggestions.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/components/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/components/welcome.tsx -------------------------------------------------------------------------------- /examples/ask-docs-rag/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/lib/types.ts -------------------------------------------------------------------------------- /examples/ask-docs-rag/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/lib/utils.ts -------------------------------------------------------------------------------- /examples/ask-docs-rag/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/next.config.js -------------------------------------------------------------------------------- /examples/ask-docs-rag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/package.json -------------------------------------------------------------------------------- /examples/ask-docs-rag/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/postcss.config.js -------------------------------------------------------------------------------- /examples/ask-docs-rag/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/prettier.config.cjs -------------------------------------------------------------------------------- /examples/ask-docs-rag/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/ask-docs-rag/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/tailwind.config.ts -------------------------------------------------------------------------------- /examples/ask-docs-rag/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/ask-docs-rag/tsconfig.json -------------------------------------------------------------------------------- /examples/career-prep-coach/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/career-prep-coach/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/.gitignore -------------------------------------------------------------------------------- /examples/career-prep-coach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/README.md -------------------------------------------------------------------------------- /examples/career-prep-coach/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/career-prep-coach/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/app/favicon.ico -------------------------------------------------------------------------------- /examples/career-prep-coach/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/app/globals.css -------------------------------------------------------------------------------- /examples/career-prep-coach/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/app/layout.tsx -------------------------------------------------------------------------------- /examples/career-prep-coach/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/app/page.tsx -------------------------------------------------------------------------------- /examples/career-prep-coach/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/components/header.tsx -------------------------------------------------------------------------------- /examples/career-prep-coach/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/components/opening.tsx -------------------------------------------------------------------------------- /examples/career-prep-coach/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/lib/types.ts -------------------------------------------------------------------------------- /examples/career-prep-coach/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/lib/utils.ts -------------------------------------------------------------------------------- /examples/career-prep-coach/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/next.config.js -------------------------------------------------------------------------------- /examples/career-prep-coach/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/package.json -------------------------------------------------------------------------------- /examples/career-prep-coach/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/postcss.config.js -------------------------------------------------------------------------------- /examples/career-prep-coach/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/prettier.config.cjs -------------------------------------------------------------------------------- /examples/career-prep-coach/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/career-prep-coach/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/tailwind.config.ts -------------------------------------------------------------------------------- /examples/career-prep-coach/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/career-prep-coach/tsconfig.json -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/.gitignore -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/README.md -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/app/layout.tsx -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/app/page.tsx -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/lib/types.ts -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/lib/utils.ts -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/next.config.js -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/package.json -------------------------------------------------------------------------------- /examples/cefr-level-assessment-bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/cefr-level-assessment-bot/tsconfig.json -------------------------------------------------------------------------------- /examples/code-alchemist/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/.env.example -------------------------------------------------------------------------------- /examples/code-alchemist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/.gitignore -------------------------------------------------------------------------------- /examples/code-alchemist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/README.md -------------------------------------------------------------------------------- /examples/code-alchemist/app/api/generate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/api/generate/route.ts -------------------------------------------------------------------------------- /examples/code-alchemist/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/favicon.ico -------------------------------------------------------------------------------- /examples/code-alchemist/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/globals.css -------------------------------------------------------------------------------- /examples/code-alchemist/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/layout.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/page.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/app/provider.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components.json -------------------------------------------------------------------------------- /examples/code-alchemist/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/footer.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/header.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/loading.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/markdown.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/opening.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/sandbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/sandbox.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/skeleton.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/switch.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/ui/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/ui/anchor.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/ui/sonner.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/ui/spinner.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/ui/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/ui/theme.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/use-cases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/use-cases.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/components/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/components/welcome.tsx -------------------------------------------------------------------------------- /examples/code-alchemist/hooks/use-langbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/hooks/use-langbase.ts -------------------------------------------------------------------------------- /examples/code-alchemist/lib/utils.ts: -------------------------------------------------------------------------------- 1 | export { cn } from 'mxcn'; 2 | -------------------------------------------------------------------------------- /examples/code-alchemist/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/next.config.mjs -------------------------------------------------------------------------------- /examples/code-alchemist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/package.json -------------------------------------------------------------------------------- /examples/code-alchemist/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/code-alchemist/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/postcss.config.mjs -------------------------------------------------------------------------------- /examples/code-alchemist/shad-tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/shad-tailwind.config.js -------------------------------------------------------------------------------- /examples/code-alchemist/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/tailwind.config.ts -------------------------------------------------------------------------------- /examples/code-alchemist/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/tsconfig.json -------------------------------------------------------------------------------- /examples/code-alchemist/utils/run-agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/code-alchemist/utils/run-agents.ts -------------------------------------------------------------------------------- /examples/dev-screener/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/dev-screener/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/.gitignore -------------------------------------------------------------------------------- /examples/dev-screener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/README.md -------------------------------------------------------------------------------- /examples/dev-screener/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/dev-screener/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/app/favicon.ico -------------------------------------------------------------------------------- /examples/dev-screener/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/app/globals.css -------------------------------------------------------------------------------- /examples/dev-screener/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/app/layout.tsx -------------------------------------------------------------------------------- /examples/dev-screener/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/app/page.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/chat-message.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/chatbot-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/chatbot-page.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/header.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/markdown.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/opening.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/prompt-form.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/dev-screener/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/dev-screener/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/lib/types.ts -------------------------------------------------------------------------------- /examples/dev-screener/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/lib/utils.ts -------------------------------------------------------------------------------- /examples/dev-screener/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/next.config.js -------------------------------------------------------------------------------- /examples/dev-screener/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/package.json -------------------------------------------------------------------------------- /examples/dev-screener/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/postcss.config.js -------------------------------------------------------------------------------- /examples/dev-screener/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/prettier.config.cjs -------------------------------------------------------------------------------- /examples/dev-screener/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/dev-screener/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/tailwind.config.ts -------------------------------------------------------------------------------- /examples/dev-screener/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/dev-screener/tsconfig.json -------------------------------------------------------------------------------- /examples/documents-qna-rag/.env.local.example: -------------------------------------------------------------------------------- 1 | # !! SERVER SIDE ONLY !! 2 | # Pipes. 3 | LANGBASE_PIPE_API_KEY="" 4 | -------------------------------------------------------------------------------- /examples/documents-qna-rag/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /examples/documents-qna-rag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/.gitignore -------------------------------------------------------------------------------- /examples/documents-qna-rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/README.md -------------------------------------------------------------------------------- /examples/documents-qna-rag/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/app/favicon.ico -------------------------------------------------------------------------------- /examples/documents-qna-rag/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/app/globals.css -------------------------------------------------------------------------------- /examples/documents-qna-rag/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/app/layout.tsx -------------------------------------------------------------------------------- /examples/documents-qna-rag/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/app/page.tsx -------------------------------------------------------------------------------- /examples/documents-qna-rag/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/components.json -------------------------------------------------------------------------------- /examples/documents-qna-rag/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/lib/utils.ts -------------------------------------------------------------------------------- /examples/documents-qna-rag/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/next.config.mjs -------------------------------------------------------------------------------- /examples/documents-qna-rag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/package.json -------------------------------------------------------------------------------- /examples/documents-qna-rag/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/postcss.config.mjs -------------------------------------------------------------------------------- /examples/documents-qna-rag/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/public/next.svg -------------------------------------------------------------------------------- /examples/documents-qna-rag/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/public/vercel.svg -------------------------------------------------------------------------------- /examples/documents-qna-rag/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/tailwind.config.ts -------------------------------------------------------------------------------- /examples/documents-qna-rag/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/documents-qna-rag/tsconfig.json -------------------------------------------------------------------------------- /examples/email-agent-node/.env.example: -------------------------------------------------------------------------------- 1 | LANGBASE_API_KEY="" 2 | -------------------------------------------------------------------------------- /examples/email-agent-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/.gitignore -------------------------------------------------------------------------------- /examples/email-agent-node/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/agents.ts -------------------------------------------------------------------------------- /examples/email-agent-node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/index.ts -------------------------------------------------------------------------------- /examples/email-agent-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/package.json -------------------------------------------------------------------------------- /examples/email-agent-node/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/email-agent-node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-node/readme.md -------------------------------------------------------------------------------- /examples/email-agent-python/.env.example: -------------------------------------------------------------------------------- 1 | LANGBASE_API_KEY="" 2 | -------------------------------------------------------------------------------- /examples/email-agent-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-python/.gitignore -------------------------------------------------------------------------------- /examples/email-agent-python/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-python/agent.py -------------------------------------------------------------------------------- /examples/email-agent-python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/email-agent-python/readme.md -------------------------------------------------------------------------------- /examples/excel-master/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/excel-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/.gitignore -------------------------------------------------------------------------------- /examples/excel-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/README.md -------------------------------------------------------------------------------- /examples/excel-master/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/excel-master/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/app/favicon.ico -------------------------------------------------------------------------------- /examples/excel-master/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/app/globals.css -------------------------------------------------------------------------------- /examples/excel-master/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/app/layout.tsx -------------------------------------------------------------------------------- /examples/excel-master/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/app/page.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/chat-message.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/chatbot-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/chatbot-page.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/header.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/markdown.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/opening.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/prompt-form.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/excel-master/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/excel-master/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/lib/types.ts -------------------------------------------------------------------------------- /examples/excel-master/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/lib/utils.ts -------------------------------------------------------------------------------- /examples/excel-master/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/next.config.js -------------------------------------------------------------------------------- /examples/excel-master/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/package.json -------------------------------------------------------------------------------- /examples/excel-master/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/postcss.config.js -------------------------------------------------------------------------------- /examples/excel-master/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/prettier.config.cjs -------------------------------------------------------------------------------- /examples/excel-master/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/excel-master/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/tailwind.config.ts -------------------------------------------------------------------------------- /examples/excel-master/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/excel-master/tsconfig.json -------------------------------------------------------------------------------- /examples/expert-proofreader/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/expert-proofreader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/.gitignore -------------------------------------------------------------------------------- /examples/expert-proofreader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/README.md -------------------------------------------------------------------------------- /examples/expert-proofreader/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/expert-proofreader/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/app/favicon.ico -------------------------------------------------------------------------------- /examples/expert-proofreader/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/app/globals.css -------------------------------------------------------------------------------- /examples/expert-proofreader/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/app/layout.tsx -------------------------------------------------------------------------------- /examples/expert-proofreader/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/app/page.tsx -------------------------------------------------------------------------------- /examples/expert-proofreader/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/components/header.tsx -------------------------------------------------------------------------------- /examples/expert-proofreader/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/lib/types.ts -------------------------------------------------------------------------------- /examples/expert-proofreader/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/lib/utils.ts -------------------------------------------------------------------------------- /examples/expert-proofreader/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/next.config.js -------------------------------------------------------------------------------- /examples/expert-proofreader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/package.json -------------------------------------------------------------------------------- /examples/expert-proofreader/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/postcss.config.js -------------------------------------------------------------------------------- /examples/expert-proofreader/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/prettier.config.cjs -------------------------------------------------------------------------------- /examples/expert-proofreader/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/expert-proofreader/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/tailwind.config.ts -------------------------------------------------------------------------------- /examples/expert-proofreader/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/expert-proofreader/tsconfig.json -------------------------------------------------------------------------------- /examples/geosimcities/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/.env.example -------------------------------------------------------------------------------- /examples/geosimcities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/.gitignore -------------------------------------------------------------------------------- /examples/geosimcities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/README.md -------------------------------------------------------------------------------- /examples/geosimcities/assets/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/assets/cover.jpg -------------------------------------------------------------------------------- /examples/geosimcities/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/netlify.toml -------------------------------------------------------------------------------- /examples/geosimcities/netlify/functions/hello.mts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/geosimcities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/package.json -------------------------------------------------------------------------------- /examples/geosimcities/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/public/index.html -------------------------------------------------------------------------------- /examples/geosimcities/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/geosimcities/public/robots.txt -------------------------------------------------------------------------------- /examples/github-docs-sync-script/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/github-docs-sync-script/.env.example -------------------------------------------------------------------------------- /examples/github-docs-sync-script/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/github-docs-sync-script/.gitignore -------------------------------------------------------------------------------- /examples/github-docs-sync-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/github-docs-sync-script/README.md -------------------------------------------------------------------------------- /examples/github-docs-sync-script/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/github-docs-sync-script/package.json -------------------------------------------------------------------------------- /examples/github-docs-sync-script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/github-docs-sync-script/script.js -------------------------------------------------------------------------------- /examples/js-tutor/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/js-tutor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/.gitignore -------------------------------------------------------------------------------- /examples/js-tutor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/README.md -------------------------------------------------------------------------------- /examples/js-tutor/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/js-tutor/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/app/favicon.ico -------------------------------------------------------------------------------- /examples/js-tutor/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/app/globals.css -------------------------------------------------------------------------------- /examples/js-tutor/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/app/layout.tsx -------------------------------------------------------------------------------- /examples/js-tutor/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/app/page.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/chat-message.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/chatbot-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/chatbot-page.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/header.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/markdown.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/opening.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/prompt-form.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/js-tutor/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/js-tutor/lib/hooks/use-enter-submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/lib/hooks/use-enter-submit.tsx -------------------------------------------------------------------------------- /examples/js-tutor/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/lib/types.ts -------------------------------------------------------------------------------- /examples/js-tutor/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/lib/utils.ts -------------------------------------------------------------------------------- /examples/js-tutor/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/next.config.js -------------------------------------------------------------------------------- /examples/js-tutor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/package.json -------------------------------------------------------------------------------- /examples/js-tutor/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/js-tutor/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/postcss.config.js -------------------------------------------------------------------------------- /examples/js-tutor/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/prettier.config.cjs -------------------------------------------------------------------------------- /examples/js-tutor/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/js-tutor/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/tailwind.config.ts -------------------------------------------------------------------------------- /examples/js-tutor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/js-tutor/tsconfig.json -------------------------------------------------------------------------------- /examples/newsgpt/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/.env.example -------------------------------------------------------------------------------- /examples/newsgpt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/.gitignore -------------------------------------------------------------------------------- /examples/newsgpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/README.md -------------------------------------------------------------------------------- /examples/newsgpt/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/eslint.config.js -------------------------------------------------------------------------------- /examples/newsgpt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/index.html -------------------------------------------------------------------------------- /examples/newsgpt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/package.json -------------------------------------------------------------------------------- /examples/newsgpt/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/public/favicon.svg -------------------------------------------------------------------------------- /examples/newsgpt/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/App.css -------------------------------------------------------------------------------- /examples/newsgpt/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/App.tsx -------------------------------------------------------------------------------- /examples/newsgpt/src/assets/Cloudflare_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/assets/Cloudflare_Logo.svg -------------------------------------------------------------------------------- /examples/newsgpt/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/assets/react.svg -------------------------------------------------------------------------------- /examples/newsgpt/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/index.css -------------------------------------------------------------------------------- /examples/newsgpt/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/newsgpt/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/src/main.tsx -------------------------------------------------------------------------------- /examples/newsgpt/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/newsgpt/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tailwind.config.js -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.app.json -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.json -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.node.json -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.node.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.node.tsbuildinfo -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.server.json -------------------------------------------------------------------------------- /examples/newsgpt/tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/tsconfig.worker.json -------------------------------------------------------------------------------- /examples/newsgpt/vite.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/vite.config.d.ts -------------------------------------------------------------------------------- /examples/newsgpt/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/vite.config.js -------------------------------------------------------------------------------- /examples/newsgpt/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/vite.config.ts -------------------------------------------------------------------------------- /examples/newsgpt/vitest.config.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/vitest.config.d.mts -------------------------------------------------------------------------------- /examples/newsgpt/vitest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/vitest.config.mjs -------------------------------------------------------------------------------- /examples/newsgpt/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker-configuration.d.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/agent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/agent.d.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/agent.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/index.d.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/index.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/langbase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/langbase.d.ts -------------------------------------------------------------------------------- /examples/newsgpt/worker/langbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/worker/langbase.ts -------------------------------------------------------------------------------- /examples/newsgpt/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/newsgpt/wrangler.jsonc -------------------------------------------------------------------------------- /examples/nextjs-basic/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY= 2 | -------------------------------------------------------------------------------- /examples/nextjs-basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/.gitignore -------------------------------------------------------------------------------- /examples/nextjs-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/README.md -------------------------------------------------------------------------------- /examples/nextjs-basic/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/app/actions.ts -------------------------------------------------------------------------------- /examples/nextjs-basic/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs-basic/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/app/globals.css -------------------------------------------------------------------------------- /examples/nextjs-basic/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs-basic/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs-basic/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/next.config.mjs -------------------------------------------------------------------------------- /examples/nextjs-basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/package.json -------------------------------------------------------------------------------- /examples/nextjs-basic/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/postcss.config.mjs -------------------------------------------------------------------------------- /examples/nextjs-basic/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs-basic/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs-basic/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/tailwind.config.ts -------------------------------------------------------------------------------- /examples/nextjs-basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/nextjs-basic/tsconfig.json -------------------------------------------------------------------------------- /examples/notedash/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/.env.example -------------------------------------------------------------------------------- /examples/notedash/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/.eslintrc.json -------------------------------------------------------------------------------- /examples/notedash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/.gitignore -------------------------------------------------------------------------------- /examples/notedash/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/.prettierrc.json -------------------------------------------------------------------------------- /examples/notedash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/README.md -------------------------------------------------------------------------------- /examples/notedash/app/api/chat/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/api/chat/route.tsx -------------------------------------------------------------------------------- /examples/notedash/app/api/summary/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/api/summary/route.tsx -------------------------------------------------------------------------------- /examples/notedash/app/api/transcribe/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/api/transcribe/route.tsx -------------------------------------------------------------------------------- /examples/notedash/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/favicon.ico -------------------------------------------------------------------------------- /examples/notedash/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/globals.css -------------------------------------------------------------------------------- /examples/notedash/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/layout.tsx -------------------------------------------------------------------------------- /examples/notedash/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/page.tsx -------------------------------------------------------------------------------- /examples/notedash/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/app/provider.tsx -------------------------------------------------------------------------------- /examples/notedash/components/hooks/use-chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/hooks/use-chat.tsx -------------------------------------------------------------------------------- /examples/notedash/components/markdown-render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/markdown-render.tsx -------------------------------------------------------------------------------- /examples/notedash/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/markdown.tsx -------------------------------------------------------------------------------- /examples/notedash/components/meeting-recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/meeting-recorder.tsx -------------------------------------------------------------------------------- /examples/notedash/components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/navbar.tsx -------------------------------------------------------------------------------- /examples/notedash/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/spinner.tsx -------------------------------------------------------------------------------- /examples/notedash/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/types.ts -------------------------------------------------------------------------------- /examples/notedash/components/ui/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/Code.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/accordion.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/anchor.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/badge.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/bulb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/bulb.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/command.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/dialog.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/drawer.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/hr.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/label.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/pagination.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/popover.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/select.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/separator.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/sheet.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/slider.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/sonner.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/switch.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/table.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/tabs.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/textarea.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/theme.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/tip.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/toast.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/toggle-enable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/toggle-enable.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/toggle.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /examples/notedash/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/components/ui/use-toast.ts -------------------------------------------------------------------------------- /examples/notedash/lib/utils.ts: -------------------------------------------------------------------------------- 1 | export { cn } from 'mxcn'; 2 | -------------------------------------------------------------------------------- /examples/notedash/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/next.config.mjs -------------------------------------------------------------------------------- /examples/notedash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/package.json -------------------------------------------------------------------------------- /examples/notedash/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/notedash/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/postcss.config.mjs -------------------------------------------------------------------------------- /examples/notedash/shad-tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/shad-tailwind.config.js -------------------------------------------------------------------------------- /examples/notedash/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/tailwind.config.ts -------------------------------------------------------------------------------- /examples/notedash/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/notedash/tsconfig.json -------------------------------------------------------------------------------- /examples/product-review-generator/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="" -------------------------------------------------------------------------------- /examples/product-review-generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/.gitignore -------------------------------------------------------------------------------- /examples/product-review-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/README.md -------------------------------------------------------------------------------- /examples/product-review-generator/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/app/favicon.ico -------------------------------------------------------------------------------- /examples/product-review-generator/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/app/globals.css -------------------------------------------------------------------------------- /examples/product-review-generator/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/app/page.tsx -------------------------------------------------------------------------------- /examples/product-review-generator/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/lib/types.ts -------------------------------------------------------------------------------- /examples/product-review-generator/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/lib/utils.ts -------------------------------------------------------------------------------- /examples/product-review-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/product-review-generator/package.json -------------------------------------------------------------------------------- /examples/pseudocode-generator/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY="pipe_3utbAAFN487dgqiJocFPBGNpmdM3j4MJagdHh2zdVJqy5LDBgvAh8Q9DMSJwCehKyrBNDembw1Sjyn2ywNnh15J6" -------------------------------------------------------------------------------- /examples/pseudocode-generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/.gitignore -------------------------------------------------------------------------------- /examples/pseudocode-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/README.md -------------------------------------------------------------------------------- /examples/pseudocode-generator/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/app/favicon.ico -------------------------------------------------------------------------------- /examples/pseudocode-generator/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/app/globals.css -------------------------------------------------------------------------------- /examples/pseudocode-generator/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/app/layout.tsx -------------------------------------------------------------------------------- /examples/pseudocode-generator/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/app/page.tsx -------------------------------------------------------------------------------- /examples/pseudocode-generator/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/lib/types.ts -------------------------------------------------------------------------------- /examples/pseudocode-generator/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/lib/utils.ts -------------------------------------------------------------------------------- /examples/pseudocode-generator/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/next.config.js -------------------------------------------------------------------------------- /examples/pseudocode-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/package.json -------------------------------------------------------------------------------- /examples/pseudocode-generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/pseudocode-generator/tsconfig.json -------------------------------------------------------------------------------- /examples/rag-chatbot/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/.env.example -------------------------------------------------------------------------------- /examples/rag-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /examples/rag-chatbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/.gitignore -------------------------------------------------------------------------------- /examples/rag-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/README.md -------------------------------------------------------------------------------- /examples/rag-chatbot/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/app/api/chat/route.ts -------------------------------------------------------------------------------- /examples/rag-chatbot/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/app/favicon.ico -------------------------------------------------------------------------------- /examples/rag-chatbot/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/app/globals.css -------------------------------------------------------------------------------- /examples/rag-chatbot/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/app/layout.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/app/page.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/chat-input.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/chat-list.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/header.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/markdown.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/opening.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/opening.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/components/ui/icons.tsx -------------------------------------------------------------------------------- /examples/rag-chatbot/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/lib/types.ts -------------------------------------------------------------------------------- /examples/rag-chatbot/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/lib/utils.ts -------------------------------------------------------------------------------- /examples/rag-chatbot/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/next.config.js -------------------------------------------------------------------------------- /examples/rag-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/package.json -------------------------------------------------------------------------------- /examples/rag-chatbot/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/postcss.config.js -------------------------------------------------------------------------------- /examples/rag-chatbot/prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/prettier.config.cjs -------------------------------------------------------------------------------- /examples/rag-chatbot/public/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/public/chatbot.jpg -------------------------------------------------------------------------------- /examples/rag-chatbot/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/tailwind.config.ts -------------------------------------------------------------------------------- /examples/rag-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-chatbot/tsconfig.json -------------------------------------------------------------------------------- /examples/rag-memory-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/.env.example -------------------------------------------------------------------------------- /examples/rag-memory-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/.gitignore -------------------------------------------------------------------------------- /examples/rag-memory-agent/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/.prettierrc -------------------------------------------------------------------------------- /examples/rag-memory-agent/agent/rag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/agent/rag.ts -------------------------------------------------------------------------------- /examples/rag-memory-agent/agent/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/agent/upload.ts -------------------------------------------------------------------------------- /examples/rag-memory-agent/data/doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/data/doc.pdf -------------------------------------------------------------------------------- /examples/rag-memory-agent/data/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/data/notes.md -------------------------------------------------------------------------------- /examples/rag-memory-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/package.json -------------------------------------------------------------------------------- /examples/rag-memory-agent/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/rag-memory-agent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/rag-memory-agent/readme.md -------------------------------------------------------------------------------- /examples/resume-tailor/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/.env.example -------------------------------------------------------------------------------- /examples/resume-tailor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/.gitignore -------------------------------------------------------------------------------- /examples/resume-tailor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/README.md -------------------------------------------------------------------------------- /examples/resume-tailor/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/app/favicon.ico -------------------------------------------------------------------------------- /examples/resume-tailor/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/app/globals.css -------------------------------------------------------------------------------- /examples/resume-tailor/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/app/layout.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/app/page.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/app/provider.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components.json -------------------------------------------------------------------------------- /examples/resume-tailor/components/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/actions.ts -------------------------------------------------------------------------------- /examples/resume-tailor/components/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/config.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/hero.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/markdown.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/scripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/scripts.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/spinner.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/Code.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/badge.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/bulb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/bulb.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/card.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/hr.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/label.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/sheet.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/table.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/tabs.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/theme.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/tip.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/ui/toast.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/components/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/components/upload.tsx -------------------------------------------------------------------------------- /examples/resume-tailor/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/lib/utils.ts -------------------------------------------------------------------------------- /examples/resume-tailor/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/next.config.mjs -------------------------------------------------------------------------------- /examples/resume-tailor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/package.json -------------------------------------------------------------------------------- /examples/resume-tailor/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/resume-tailor/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/postcss.config.mjs -------------------------------------------------------------------------------- /examples/resume-tailor/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/public/next.svg -------------------------------------------------------------------------------- /examples/resume-tailor/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/public/vercel.svg -------------------------------------------------------------------------------- /examples/resume-tailor/shad-tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/shad-tailwind.config.js -------------------------------------------------------------------------------- /examples/resume-tailor/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/tailwind.config.ts -------------------------------------------------------------------------------- /examples/resume-tailor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/resume-tailor/tsconfig.json -------------------------------------------------------------------------------- /examples/slack-agent/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/.editorconfig -------------------------------------------------------------------------------- /examples/slack-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/.env.example -------------------------------------------------------------------------------- /examples/slack-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/.gitignore -------------------------------------------------------------------------------- /examples/slack-agent/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/.prettierrc -------------------------------------------------------------------------------- /examples/slack-agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/.vscode/settings.json -------------------------------------------------------------------------------- /examples/slack-agent/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/components.json -------------------------------------------------------------------------------- /examples/slack-agent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/index.html -------------------------------------------------------------------------------- /examples/slack-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/package.json -------------------------------------------------------------------------------- /examples/slack-agent/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/slack-agent/public/icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/public/icon.jpeg -------------------------------------------------------------------------------- /examples/slack-agent/public/langbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/public/langbase.svg -------------------------------------------------------------------------------- /examples/slack-agent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/readme.md -------------------------------------------------------------------------------- /examples/slack-agent/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/App.tsx -------------------------------------------------------------------------------- /examples/slack-agent/src/components/agent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/components/agent.tsx -------------------------------------------------------------------------------- /examples/slack-agent/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /examples/slack-agent/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/slack-agent/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/main.tsx -------------------------------------------------------------------------------- /examples/slack-agent/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/src/styles.css -------------------------------------------------------------------------------- /examples/slack-agent/test/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/test/env.d.ts -------------------------------------------------------------------------------- /examples/slack-agent/test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/test/index.spec.ts -------------------------------------------------------------------------------- /examples/slack-agent/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/test/tsconfig.json -------------------------------------------------------------------------------- /examples/slack-agent/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/tsconfig.app.json -------------------------------------------------------------------------------- /examples/slack-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/tsconfig.json -------------------------------------------------------------------------------- /examples/slack-agent/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/tsconfig.node.json -------------------------------------------------------------------------------- /examples/slack-agent/tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/tsconfig.server.json -------------------------------------------------------------------------------- /examples/slack-agent/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/vite.config.js -------------------------------------------------------------------------------- /examples/slack-agent/vitest.config.d.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/vitest.config.d.mts -------------------------------------------------------------------------------- /examples/slack-agent/vitest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/vitest.config.mjs -------------------------------------------------------------------------------- /examples/slack-agent/vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/vitest.config.mts -------------------------------------------------------------------------------- /examples/slack-agent/worker-configuration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/worker-configuration.d.ts -------------------------------------------------------------------------------- /examples/slack-agent/worker/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/worker/agent.ts -------------------------------------------------------------------------------- /examples/slack-agent/worker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/worker/index.ts -------------------------------------------------------------------------------- /examples/slack-agent/worker/langbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/worker/langbase.ts -------------------------------------------------------------------------------- /examples/slack-agent/wrangler.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/slack-agent/wrangler.jsonc -------------------------------------------------------------------------------- /examples/tech-guide-writer/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY= 2 | -------------------------------------------------------------------------------- /examples/tech-guide-writer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/.gitignore -------------------------------------------------------------------------------- /examples/tech-guide-writer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/README.md -------------------------------------------------------------------------------- /examples/tech-guide-writer/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/app/favicon.ico -------------------------------------------------------------------------------- /examples/tech-guide-writer/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/app/globals.css -------------------------------------------------------------------------------- /examples/tech-guide-writer/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/app/layout.tsx -------------------------------------------------------------------------------- /examples/tech-guide-writer/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/app/page.tsx -------------------------------------------------------------------------------- /examples/tech-guide-writer/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/next.config.mjs -------------------------------------------------------------------------------- /examples/tech-guide-writer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/package.json -------------------------------------------------------------------------------- /examples/tech-guide-writer/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/tech-guide-writer/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/postcss.config.mjs -------------------------------------------------------------------------------- /examples/tech-guide-writer/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/public/next.svg -------------------------------------------------------------------------------- /examples/tech-guide-writer/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/public/vercel.svg -------------------------------------------------------------------------------- /examples/tech-guide-writer/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/tailwind.config.ts -------------------------------------------------------------------------------- /examples/tech-guide-writer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/tsconfig.json -------------------------------------------------------------------------------- /examples/tech-guide-writer/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/tech-guide-writer/wrangler.toml -------------------------------------------------------------------------------- /examples/text-summarizer/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_LB_PIPE_API_KEY= 2 | -------------------------------------------------------------------------------- /examples/text-summarizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/.gitignore -------------------------------------------------------------------------------- /examples/text-summarizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/README.md -------------------------------------------------------------------------------- /examples/text-summarizer/app/data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/app/data/index.ts -------------------------------------------------------------------------------- /examples/text-summarizer/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/app/favicon.ico -------------------------------------------------------------------------------- /examples/text-summarizer/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/app/globals.css -------------------------------------------------------------------------------- /examples/text-summarizer/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/app/layout.tsx -------------------------------------------------------------------------------- /examples/text-summarizer/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/app/page.tsx -------------------------------------------------------------------------------- /examples/text-summarizer/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/next.config.mjs -------------------------------------------------------------------------------- /examples/text-summarizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/package.json -------------------------------------------------------------------------------- /examples/text-summarizer/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/postcss.config.mjs -------------------------------------------------------------------------------- /examples/text-summarizer/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/public/next.svg -------------------------------------------------------------------------------- /examples/text-summarizer/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/public/vercel.svg -------------------------------------------------------------------------------- /examples/text-summarizer/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/tailwind.config.ts -------------------------------------------------------------------------------- /examples/text-summarizer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/tsconfig.json -------------------------------------------------------------------------------- /examples/text-summarizer/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/text-summarizer/wrangler.toml -------------------------------------------------------------------------------- /examples/therapeutic-assistant/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/.env.example -------------------------------------------------------------------------------- /examples/therapeutic-assistant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/.gitignore -------------------------------------------------------------------------------- /examples/therapeutic-assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/README.md -------------------------------------------------------------------------------- /examples/therapeutic-assistant/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/app/favicon.ico -------------------------------------------------------------------------------- /examples/therapeutic-assistant/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/app/globals.css -------------------------------------------------------------------------------- /examples/therapeutic-assistant/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/app/layout.tsx -------------------------------------------------------------------------------- /examples/therapeutic-assistant/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/app/page.tsx -------------------------------------------------------------------------------- /examples/therapeutic-assistant/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/components.json -------------------------------------------------------------------------------- /examples/therapeutic-assistant/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/lib/utils.ts -------------------------------------------------------------------------------- /examples/therapeutic-assistant/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/next.config.mjs -------------------------------------------------------------------------------- /examples/therapeutic-assistant/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/package.json -------------------------------------------------------------------------------- /examples/therapeutic-assistant/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/therapeutic-assistant/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/public/next.svg -------------------------------------------------------------------------------- /examples/therapeutic-assistant/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/therapeutic-assistant/tsconfig.json -------------------------------------------------------------------------------- /examples/video-wisdom/.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/.env.local.example -------------------------------------------------------------------------------- /examples/video-wisdom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/.gitignore -------------------------------------------------------------------------------- /examples/video-wisdom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/README.md -------------------------------------------------------------------------------- /examples/video-wisdom/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/app/favicon.ico -------------------------------------------------------------------------------- /examples/video-wisdom/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/app/globals.css -------------------------------------------------------------------------------- /examples/video-wisdom/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/app/layout.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/app/page.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/app/provider.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/Code.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/anchor.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/badge.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/bulb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/bulb.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/button.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/card.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/dialog.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/drawer.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/hr.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/label.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/select.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/sheet.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/slider.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/sonner.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/switch.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/table.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/theme.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/tip.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/toast.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/components/ui/toggle.tsx -------------------------------------------------------------------------------- /examples/video-wisdom/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/lib/utils.ts -------------------------------------------------------------------------------- /examples/video-wisdom/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/next.config.mjs -------------------------------------------------------------------------------- /examples/video-wisdom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/package.json -------------------------------------------------------------------------------- /examples/video-wisdom/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/video-wisdom/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/postcss.config.mjs -------------------------------------------------------------------------------- /examples/video-wisdom/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/public/next.svg -------------------------------------------------------------------------------- /examples/video-wisdom/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/public/vercel.svg -------------------------------------------------------------------------------- /examples/video-wisdom/shad-tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/shad-tailwind.config.js -------------------------------------------------------------------------------- /examples/video-wisdom/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/tailwind.config.ts -------------------------------------------------------------------------------- /examples/video-wisdom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/tsconfig.json -------------------------------------------------------------------------------- /examples/video-wisdom/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/examples/video-wisdom/wrangler.toml -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/readme.md -------------------------------------------------------------------------------- /starters/documents-qna-rag/.env.local.example: -------------------------------------------------------------------------------- 1 | # !! SERVER SIDE ONLY !! 2 | # Pipes. 3 | LANGBASE_PIPE_API_KEY="" 4 | -------------------------------------------------------------------------------- /starters/documents-qna-rag/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /starters/documents-qna-rag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/.gitignore -------------------------------------------------------------------------------- /starters/documents-qna-rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/README.md -------------------------------------------------------------------------------- /starters/documents-qna-rag/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/app/favicon.ico -------------------------------------------------------------------------------- /starters/documents-qna-rag/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/app/globals.css -------------------------------------------------------------------------------- /starters/documents-qna-rag/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/app/layout.tsx -------------------------------------------------------------------------------- /starters/documents-qna-rag/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/app/page.tsx -------------------------------------------------------------------------------- /starters/documents-qna-rag/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/components.json -------------------------------------------------------------------------------- /starters/documents-qna-rag/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/lib/utils.ts -------------------------------------------------------------------------------- /starters/documents-qna-rag/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/next.config.mjs -------------------------------------------------------------------------------- /starters/documents-qna-rag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/package.json -------------------------------------------------------------------------------- /starters/documents-qna-rag/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/postcss.config.mjs -------------------------------------------------------------------------------- /starters/documents-qna-rag/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/public/next.svg -------------------------------------------------------------------------------- /starters/documents-qna-rag/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/public/vercel.svg -------------------------------------------------------------------------------- /starters/documents-qna-rag/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/tailwind.config.ts -------------------------------------------------------------------------------- /starters/documents-qna-rag/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LangbaseInc/langbase-examples/HEAD/starters/documents-qna-rag/tsconfig.json --------------------------------------------------------------------------------