larkup 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/.env +2 -0
  2. package/app/actions/vercel.ts +417 -0
  3. package/app/api/chat/route.ts +192 -0
  4. package/app/api/chat/status/route.ts +55 -0
  5. package/app/api/chat/suggestions/route.ts +115 -0
  6. package/app/api/config/route.ts +73 -0
  7. package/app/api/config/test/route.ts +67 -0
  8. package/app/api/config/test-embedding/route.ts +40 -0
  9. package/app/api/config/test-llm/route.ts +47 -0
  10. package/app/api/config/test-provider/route.ts +36 -0
  11. package/app/api/demo/route.ts +176 -0
  12. package/app/api/deploy/ssh/route.ts +340 -0
  13. package/app/api/documents/route.ts +90 -0
  14. package/app/api/firecrawl/local/route.ts +46 -0
  15. package/app/api/index/route.ts +113 -0
  16. package/app/api/jobs/[id]/route.ts +44 -0
  17. package/app/api/jobs/route.ts +116 -0
  18. package/app/api/parse-file/route.ts +39 -0
  19. package/app/api/search/google/route.ts +162 -0
  20. package/app/api/search/route.ts +29 -0
  21. package/app/api/server/download/route.ts +112 -0
  22. package/app/api/server/generate/route.ts +46 -0
  23. package/app/api/server/local/route.ts +42 -0
  24. package/app/api/servers/route.ts +137 -0
  25. package/app/api/vector-stores/install/route.ts +65 -0
  26. package/app/api/vector-stores/status/route.ts +26 -0
  27. package/app/chat/page.tsx +15 -0
  28. package/app/configure/page.tsx +53 -0
  29. package/app/data/page.tsx +15 -0
  30. package/app/demo/page.tsx +15 -0
  31. package/app/favicon.ico +0 -0
  32. package/app/globals.css +190 -0
  33. package/app/index-data/page.tsx +15 -0
  34. package/app/layout.tsx +51 -0
  35. package/app/page.tsx +34 -0
  36. package/app/server/page.tsx +22 -0
  37. package/app/simple/chat/page.tsx +17 -0
  38. package/app/simple/docs/page.tsx +21 -0
  39. package/app/simple/layout.tsx +9 -0
  40. package/app/simple/settings/page.tsx +627 -0
  41. package/app/template.tsx +16 -0
  42. package/app/themes.css +733 -0
  43. package/components/alerts/generic-alert.tsx +74 -0
  44. package/components/app-sidebar.tsx +187 -0
  45. package/components/app-topnav.tsx +195 -0
  46. package/components/chat/chat-settings-modal.tsx +209 -0
  47. package/components/chat/chat-workspace.tsx +348 -0
  48. package/components/chat/knowledge-base-result.tsx +97 -0
  49. package/components/chat/message-item.tsx +103 -0
  50. package/components/client-layout-wrapper.tsx +182 -0
  51. package/components/configure/configure-form.tsx +1683 -0
  52. package/components/configure/store-fields.tsx +152 -0
  53. package/components/data/corpus-panel.tsx +499 -0
  54. package/components/data/data-workspace.tsx +272 -0
  55. package/components/data/firecrawl-notice.tsx +236 -0
  56. package/components/data/jobs-panel.tsx +485 -0
  57. package/components/data/paste-panel.tsx +79 -0
  58. package/components/data/scrape-panel.tsx +964 -0
  59. package/components/data/upload-panel.tsx +714 -0
  60. package/components/demo/demo-workspace.tsx +419 -0
  61. package/components/global-settings.tsx +286 -0
  62. package/components/index/index-workspace.tsx +482 -0
  63. package/components/onboarding/simple-setup.tsx +702 -0
  64. package/components/onboarding/tech-setup.tsx +121 -0
  65. package/components/onboarding/welcome-screen.tsx +183 -0
  66. package/components/page-header.tsx +44 -0
  67. package/components/server/code-viewer.tsx +87 -0
  68. package/components/server/deploy-button.tsx +1390 -0
  69. package/components/server/server-workspace.tsx +392 -0
  70. package/components/simple/sdk-connect-dialog.tsx +201 -0
  71. package/components/simple/simple-index-button.tsx +83 -0
  72. package/components/simple/simple-sidebar.tsx +161 -0
  73. package/components/theme-customizer-provider.tsx +171 -0
  74. package/components/theme-switcher.tsx +445 -0
  75. package/components/ui/alert-dialog.tsx +187 -0
  76. package/components/ui/alert.tsx +76 -0
  77. package/components/ui/badge.tsx +52 -0
  78. package/components/ui/button.tsx +59 -0
  79. package/components/ui/card.tsx +103 -0
  80. package/components/ui/checkbox.tsx +28 -0
  81. package/components/ui/collapsible.tsx +21 -0
  82. package/components/ui/dialog.tsx +159 -0
  83. package/components/ui/dropdown-menu.tsx +281 -0
  84. package/components/ui/input.tsx +22 -0
  85. package/components/ui/label.tsx +20 -0
  86. package/components/ui/popover.tsx +90 -0
  87. package/components/ui/progress.tsx +83 -0
  88. package/components/ui/provider-icon.tsx +94 -0
  89. package/components/ui/scroll-area.tsx +55 -0
  90. package/components/ui/select.tsx +248 -0
  91. package/components/ui/separator.tsx +25 -0
  92. package/components/ui/sheet.tsx +138 -0
  93. package/components/ui/skeleton.tsx +13 -0
  94. package/components/ui/sonner.tsx +63 -0
  95. package/components/ui/switch.tsx +32 -0
  96. package/components/ui/table.tsx +116 -0
  97. package/components/ui/tabs.tsx +84 -0
  98. package/components/ui/textarea.tsx +18 -0
  99. package/components/ui/tooltip.tsx +66 -0
  100. package/components/workspace/delete-server-dialog.tsx +71 -0
  101. package/components/workspace/server-form-dialog.tsx +103 -0
  102. package/components/workspace/server-switcher.tsx +163 -0
  103. package/components/workspace/workspace-provider.tsx +177 -0
  104. package/components/workspace/workspace-top-bar.tsx +23 -0
  105. package/components.json +21 -0
  106. package/lib/error-formatter.ts +15 -0
  107. package/lib/utils.ts +6 -0
  108. package/next-env.d.ts +6 -0
  109. package/next.config.mjs +18 -0
  110. package/package.json +65 -0
  111. package/postcss.config.mjs +8 -0
  112. package/public/docker.png +0 -0
  113. package/public/favicon.ico +0 -0
  114. package/public/github.svg +3 -0
  115. package/public/hetzner.svg +1 -0
  116. package/public/icons/aws.svg +38 -0
  117. package/public/icons/azure.svg +1 -0
  118. package/public/icons/chroma.png +0 -0
  119. package/public/icons/cohere.svg +30 -0
  120. package/public/icons/digital-ocean.webp +0 -0
  121. package/public/icons/firecrawl2.png +0 -0
  122. package/public/icons/gcp.svg +1 -0
  123. package/public/icons/gemini.svg +1 -0
  124. package/public/icons/jina.svg +1 -0
  125. package/public/icons/lancedb2.png +0 -0
  126. package/public/icons/mistral.svg +469 -0
  127. package/public/icons/nomic.png +0 -0
  128. package/public/icons/openai.svg +1 -0
  129. package/public/icons/pgvector2.png +0 -0
  130. package/public/icons/pinecone.png +0 -0
  131. package/public/icons/qdrant.svg +35 -0
  132. package/public/icons/supabase.png +0 -0
  133. package/public/icons/vercel copy.svg +1 -0
  134. package/public/icons/vercel.svg +1 -0
  135. package/public/icons/voyage-light.png +0 -0
  136. package/public/icons/weaviate.webp +0 -0
  137. package/public/logo-light.png +0 -0
  138. package/public/logo.png +0 -0
  139. package/public/logo9.png +0 -0
  140. package/public/vercel.svg +1 -0
  141. package/tsconfig.json +33 -0
@@ -0,0 +1,23 @@
1
+ "use client";
2
+
3
+ import { ServerSwitcher } from "./server-switcher";
4
+ import { useWorkspace } from "./workspace-provider";
5
+
6
+ /**
7
+ * Global, always-visible bar at the top of the panel. Hosts the server
8
+ * switcher (top-left) so users can add/select servers from anywhere.
9
+ */
10
+ export function WorkspaceTopBar() {
11
+ const { username } = useWorkspace();
12
+
13
+ return (
14
+ <div className="sticky top-0 z-20 flex items-cente bg-transparent! justify-between gap-3 rounded-t-2xl border-b border-border px-4 py-2.5 backdrop-blur supports-backdrop-filter:bg-panel/70 md:px-6">
15
+ <ServerSwitcher />
16
+ {username && (
17
+ <span className="hidden text-sm text-muted-foreground sm:block">
18
+ Hi, <span className="font-medium text-foreground">{username}</span>
19
+ </span>
20
+ )}
21
+ </div>
22
+ );
23
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "base-nova",
4
+ "rsc": true,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "",
8
+ "css": "app/globals.css",
9
+ "baseColor": "neutral",
10
+ "cssVariables": true,
11
+ "prefix": ""
12
+ },
13
+ "aliases": {
14
+ "components": "@/components",
15
+ "utils": "@/lib/utils",
16
+ "ui": "@/components/ui",
17
+ "lib": "@/lib",
18
+ "hooks": "@/hooks"
19
+ },
20
+ "iconLibrary": "lucide"
21
+ }
@@ -0,0 +1,15 @@
1
+ export function formatErrorMessage(error: unknown): string {
2
+ const message = error instanceof Error ? error.message : String(error);
3
+
4
+ if (message.includes("Is the docker daemon running?")) {
5
+ return "Docker is not running. Please make sure the Docker daemon is started.";
6
+ }
7
+
8
+ if (message.includes("fetch failed") || message.includes("Failed to fetch")) {
9
+ return "Network error. Please check your connection and try again.";
10
+ }
11
+
12
+ // Add more common error mappings here as needed
13
+
14
+ return message;
15
+ }
package/lib/utils.ts ADDED
@@ -0,0 +1,6 @@
1
+ import { clsx, type ClassValue } from 'clsx'
2
+ import { twMerge } from 'tailwind-merge'
3
+
4
+ export function cn(...inputs: ClassValue[]) {
5
+ return twMerge(clsx(inputs))
6
+ }
package/next-env.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ /// <reference types="next" />
2
+ /// <reference types="next/image-types/global" />
3
+ import "./.next/types/routes.d.ts";
4
+
5
+ // NOTE: This file should not be edited
6
+ // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
@@ -0,0 +1,18 @@
1
+ /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ transpilePackages: [
4
+ "@larkup/core",
5
+ "@larkup/vector-stores",
6
+ "@larkup/scraper",
7
+ ],
8
+ serverExternalPackages: ["@lancedb/lancedb", "chromadb"],
9
+ typescript: {
10
+ ignoreBuildErrors: true,
11
+ },
12
+ images: {
13
+ unoptimized: true,
14
+ },
15
+ output: "standalone",
16
+ };
17
+
18
+ export default nextConfig;
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "larkup",
3
+ "version": "0.1.14",
4
+ "type": "module",
5
+ "scripts": {
6
+ "dev": "next dev -p 4567",
7
+ "build": "next build",
8
+ "start": "next start -p 4567",
9
+ "lint": "eslint ."
10
+ },
11
+ "dependencies": {
12
+ "@ai-sdk/cohere": "^3.0.39",
13
+ "@ai-sdk/deepseek": "^2.0.39",
14
+ "@ai-sdk/gateway": "^3.0.133",
15
+ "@ai-sdk/google": "^3.0.83",
16
+ "@ai-sdk/mistral": "^3.0.40",
17
+ "@ai-sdk/openai": "^3.0.68",
18
+ "@ai-sdk/openai-compatible": "^2.0.51",
19
+ "@ai-sdk/react": "^4.0.5",
20
+ "@base-ui/react": "^1.5.0",
21
+ "@codemirror/lang-javascript": "^6.2.5",
22
+ "@codemirror/lang-json": "^6.0.2",
23
+ "@codemirror/lang-markdown": "^6.5.0",
24
+ "@codemirror/lang-python": "^6.2.1",
25
+ "@codemirror/lang-yaml": "^6.1.3",
26
+ "@lancedb/lancedb": "^0.30.0",
27
+ "@larkup/core": "workspace:*",
28
+ "@larkup/scraper": "workspace:*",
29
+ "@larkup/vector-stores": "workspace:*",
30
+ "@uiw/codemirror-theme-github": "^4.25.10",
31
+ "@uiw/react-codemirror": "^4.25.10",
32
+ "@vercel/analytics": "1.6.1",
33
+ "ai": "^6.0.197",
34
+ "class-variance-authority": "^0.7.1",
35
+ "clsx": "^2.1.1",
36
+ "framer-motion": "^12.40.0",
37
+ "jszip": "^3.10.1",
38
+ "lucide-react": "^1.16.0",
39
+ "mammoth": "^1.12.0",
40
+ "next": "16.2.6",
41
+ "next-themes": "^0.4.6",
42
+ "node-ssh": "^13.2.1",
43
+ "papaparse": "^5.5.3",
44
+ "pdf-parse": "1.1.1",
45
+ "react": "^19",
46
+ "react-dom": "^19",
47
+ "shadcn": "^4.8.0",
48
+ "sonner": "^2.0.7",
49
+ "swr": "^2.4.1",
50
+ "tailwind-merge": "^3.3.1",
51
+ "tw-animate-css": "^1.4.0",
52
+ "xlsx": "^0.18.5",
53
+ "zod": "^4.4.3"
54
+ },
55
+ "devDependencies": {
56
+ "@tailwindcss/postcss": "^4.2.0",
57
+ "@types/node": "^24",
58
+ "@types/papaparse": "^5.5.2",
59
+ "@types/react": "^19",
60
+ "@types/react-dom": "^19",
61
+ "postcss": "^8.5",
62
+ "tailwindcss": "^4.2.0",
63
+ "typescript": "5.7.3"
64
+ }
65
+ }
@@ -0,0 +1,8 @@
1
+ /** @type {import('postcss-load-config').Config} */
2
+ const config = {
3
+ plugins: {
4
+ '@tailwindcss/postcss': {},
5
+ },
6
+ }
7
+
8
+ export default config
Binary file
Binary file
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
2
+ <path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify" preserveAspectRatio="xMidYMid meet" version="1.2" viewBox="0.86 0.28 373.05 373.77"><defs><clipPath id="d2bc06233f"><path d="M 0 0 L 374 0 L 374 374.25 L 0 374.25 Z M 0 0 "/></clipPath></defs><g id="528e5e5a56"><g clip-rule="nonzero" clip-path="url(#d2bc06233f)"><path style=" stroke:none;fill-rule:nonzero;fill:#d50c2d;fill-opacity:1;" d="M 373.914062 187.164062 C 373.914062 190.222656 373.835938 193.28125 373.6875 196.335938 C 373.539062 199.390625 373.3125 202.4375 373.015625 205.484375 C 372.714844 208.527344 372.339844 211.5625 371.894531 214.585938 C 371.445312 217.613281 370.925781 220.625 370.328125 223.625 C 369.734375 226.625 369.0625 229.609375 368.324219 232.574219 C 367.582031 235.542969 366.765625 238.488281 365.882812 241.414062 C 364.996094 244.34375 364.039062 247.246094 363.007812 250.125 C 361.980469 253.003906 360.882812 255.855469 359.714844 258.683594 C 358.546875 261.507812 357.308594 264.304688 356.003906 267.070312 C 354.699219 269.832031 353.328125 272.566406 351.886719 275.261719 C 350.449219 277.960938 348.945312 280.621094 347.375 283.242188 C 345.804688 285.867188 344.171875 288.449219 342.476562 290.992188 C 340.78125 293.535156 339.023438 296.035156 337.207031 298.492188 C 335.386719 300.949219 333.507812 303.359375 331.574219 305.722656 C 329.636719 308.089844 327.644531 310.402344 325.59375 312.667969 C 323.542969 314.9375 321.4375 317.148438 319.28125 319.3125 C 317.121094 321.476562 314.910156 323.585938 312.648438 325.636719 C 310.386719 327.691406 308.078125 329.6875 305.71875 331.628906 C 303.359375 333.570312 300.953125 335.449219 298.5 337.273438 C 296.046875 339.09375 293.554688 340.855469 291.015625 342.554688 C 288.476562 344.253906 285.898438 345.890625 283.28125 347.460938 C 280.660156 349.035156 278.007812 350.542969 275.3125 351.984375 C 272.621094 353.425781 269.894531 354.800781 267.136719 356.109375 C 264.378906 357.414062 261.585938 358.652344 258.765625 359.824219 C 255.945312 360.996094 253.097656 362.09375 250.226562 363.125 C 247.351562 364.15625 244.453125 365.117188 241.53125 366.003906 C 238.609375 366.890625 235.667969 367.707031 232.707031 368.449219 C 229.746094 369.191406 226.769531 369.863281 223.777344 370.460938 C 220.78125 371.054688 217.773438 371.578125 214.753906 372.027344 C 211.734375 372.476562 208.707031 372.851562 205.667969 373.152344 C 202.632812 373.449219 199.585938 373.675781 196.539062 373.824219 C 193.488281 373.976562 190.4375 374.050781 187.386719 374.050781 C 184.332031 374.050781 181.28125 373.976562 178.234375 373.824219 C 175.183594 373.675781 172.140625 373.449219 169.105469 373.152344 C 166.066406 372.851562 163.035156 372.476562 160.015625 372.027344 C 156.996094 371.578125 153.992188 371.054688 150.996094 370.460938 C 148.003906 369.863281 145.027344 369.191406 142.0625 368.449219 C 139.101562 367.707031 136.160156 366.890625 133.242188 366.003906 C 130.320312 365.117188 127.421875 364.15625 124.546875 363.125 C 121.671875 362.09375 118.828125 360.996094 116.007812 359.824219 C 113.1875 358.652344 110.394531 357.414062 107.636719 356.109375 C 104.875 354.800781 102.152344 353.425781 99.457031 351.984375 C 96.765625 350.542969 94.109375 349.035156 91.492188 347.460938 C 88.875 345.890625 86.296875 344.253906 83.757812 342.554688 C 81.21875 340.855469 78.726562 339.09375 76.273438 337.273438 C 73.820312 335.449219 71.414062 333.570312 69.054688 331.628906 C 66.695312 329.6875 64.386719 327.691406 62.125 325.636719 C 59.859375 323.585938 57.652344 321.476562 55.492188 319.3125 C 53.335938 317.148438 51.230469 314.9375 49.179688 312.667969 C 47.128906 310.402344 45.136719 308.089844 43.199219 305.722656 C 41.261719 303.359375 39.386719 300.949219 37.566406 298.492188 C 35.75 296.035156 33.992188 293.535156 32.296875 290.992188 C 30.601562 288.449219 28.96875 285.867188 27.398438 283.242188 C 25.828125 280.621094 24.324219 277.960938 22.886719 275.261719 C 21.445312 272.566406 20.074219 269.832031 18.769531 267.070312 C 17.464844 264.304688 16.226562 261.507812 15.058594 258.683594 C 13.890625 255.855469 12.792969 253.003906 11.765625 250.125 C 10.734375 247.246094 9.777344 244.34375 8.890625 241.414062 C 8.007812 238.488281 7.191406 235.542969 6.449219 232.574219 C 5.707031 229.609375 5.039062 226.625 4.445312 223.625 C 3.847656 220.625 3.328125 217.613281 2.878906 214.585938 C 2.429688 211.5625 2.058594 208.527344 1.757812 205.484375 C 1.460938 202.4375 1.234375 199.390625 1.085938 196.335938 C 0.933594 193.28125 0.859375 190.222656 0.859375 187.164062 C 0.859375 184.105469 0.933594 181.050781 1.085938 177.996094 C 1.234375 174.941406 1.460938 171.890625 1.757812 168.847656 C 2.058594 165.804688 2.429688 162.769531 2.878906 159.742188 C 3.328125 156.71875 3.847656 153.707031 4.445312 150.707031 C 5.039062 147.707031 5.707031 144.722656 6.449219 141.753906 C 7.191406 138.789062 8.007812 135.84375 8.890625 132.914062 C 9.777344 129.988281 10.734375 127.085938 11.765625 124.207031 C 12.792969 121.324219 13.890625 118.472656 15.058594 115.648438 C 16.226562 112.820312 17.464844 110.027344 18.769531 107.261719 C 20.074219 104.496094 21.445312 101.765625 22.886719 99.066406 C 24.324219 96.371094 25.828125 93.710938 27.398438 91.085938 C 28.96875 88.464844 30.601562 85.878906 32.296875 83.335938 C 33.992188 80.792969 35.75 78.292969 37.566406 75.835938 C 39.386719 73.382812 41.261719 70.972656 43.199219 68.605469 C 45.136719 66.242188 47.128906 63.925781 49.179688 61.660156 C 51.230469 59.394531 53.335938 57.179688 55.492188 55.015625 C 57.652344 52.855469 59.859375 50.746094 62.125 48.691406 C 64.386719 46.636719 66.695312 44.640625 69.054688 42.699219 C 71.414062 40.761719 73.820312 38.878906 76.273438 37.058594 C 78.726562 35.234375 81.21875 33.476562 83.757812 31.777344 C 86.296875 30.078125 88.875 28.441406 91.492188 26.867188 C 94.109375 25.296875 96.765625 23.789062 99.457031 22.347656 C 102.152344 20.90625 104.875 19.53125 107.636719 18.222656 C 110.394531 16.914062 113.1875 15.675781 116.007812 14.503906 C 118.828125 13.335938 121.671875 12.234375 124.546875 11.203125 C 127.421875 10.175781 130.320312 9.214844 133.242188 8.328125 C 136.160156 7.4375 139.101562 6.625 142.0625 5.878906 C 145.027344 5.136719 148.003906 4.46875 150.996094 3.871094 C 153.992188 3.273438 156.996094 2.75 160.015625 2.300781 C 163.035156 1.855469 166.066406 1.480469 169.105469 1.179688 C 172.140625 0.878906 175.183594 0.65625 178.234375 0.503906 C 181.28125 0.355469 184.332031 0.28125 187.386719 0.28125 C 190.4375 0.28125 193.488281 0.355469 196.539062 0.503906 C 199.585938 0.65625 202.632812 0.878906 205.667969 1.179688 C 208.707031 1.480469 211.734375 1.855469 214.753906 2.300781 C 217.773438 2.75 220.78125 3.273438 223.777344 3.871094 C 226.769531 4.46875 229.746094 5.136719 232.707031 5.878906 C 235.667969 6.625 238.609375 7.4375 241.53125 8.328125 C 244.453125 9.214844 247.351562 10.175781 250.226562 11.203125 C 253.097656 12.234375 255.945312 13.335938 258.765625 14.503906 C 261.585938 15.675781 264.378906 16.914062 267.136719 18.222656 C 269.894531 19.53125 272.621094 20.90625 275.3125 22.347656 C 278.007812 23.789062 280.660156 25.296875 283.28125 26.867188 C 285.898438 28.441406 288.476562 30.078125 291.015625 31.777344 C 293.554688 33.476562 296.046875 35.234375 298.5 37.058594 C 300.953125 38.878906 303.359375 40.761719 305.71875 42.699219 C 308.078125 44.640625 310.386719 46.636719 312.648438 48.691406 C 314.910156 50.746094 317.121094 52.855469 319.28125 55.015625 C 321.4375 57.179688 323.542969 59.394531 325.59375 61.660156 C 327.644531 63.925781 329.636719 66.242188 331.574219 68.605469 C 333.511719 70.972656 335.386719 73.382812 337.207031 75.835938 C 339.023438 78.292969 340.78125 80.792969 342.476562 83.335938 C 344.171875 85.878906 345.804688 88.464844 347.375 91.085938 C 348.945312 93.710938 350.449219 96.371094 351.886719 99.066406 C 353.328125 101.765625 354.699219 104.496094 356.003906 107.261719 C 357.308594 110.027344 358.546875 112.820312 359.714844 115.648438 C 360.882812 118.472656 361.980469 121.324219 363.007812 124.207031 C 364.039062 127.085938 364.996094 129.988281 365.882812 132.914062 C 366.765625 135.84375 367.582031 138.789062 368.324219 141.753906 C 369.0625 144.722656 369.734375 147.707031 370.328125 150.707031 C 370.925781 153.707031 371.445312 156.71875 371.894531 159.742188 C 372.339844 162.769531 372.714844 165.804688 373.015625 168.847656 C 373.3125 171.890625 373.539062 174.941406 373.6875 177.996094 C 373.835938 181.050781 373.914062 184.105469 373.914062 187.164062 Z M 373.914062 187.164062 "/></g><path style=" stroke:none;fill-rule:nonzero;fill:#ffffff;fill-opacity:1;" d="M 280.613281 86.34375 L 252.492188 86.34375 C 246.164062 86.34375 243.449219 88.96875 243.449219 95.398438 L 243.449219 166.667969 L 131.414062 166.667969 L 131.414062 95.398438 C 131.414062 89.058594 128.792969 86.34375 122.371094 86.34375 L 94.066406 86.34375 C 87.648438 86.34375 85.023438 88.96875 85.023438 95.398438 L 85.023438 278.78125 C 85.023438 285.210938 87.648438 287.835938 94.066406 287.835938 L 122.371094 287.835938 C 128.699219 287.835938 131.414062 285.300781 131.414062 278.78125 L 131.414062 206.332031 L 243.539062 206.332031 L 243.539062 278.78125 C 243.539062 285.121094 246.164062 287.835938 252.582031 287.835938 L 280.707031 287.835938 C 287.035156 287.835938 289.75 285.210938 289.75 278.78125 L 289.75 95.398438 C 289.566406 89.242188 286.945312 86.34375 280.613281 86.34375 Z M 280.613281 86.34375 "/></g></svg>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 304 182" style="enable-background:new 0 0 304 182;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#252F3E;}
7
+ .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#FF9900;}
8
+ </style>
9
+ <g>
10
+ <path class="st0" d="M86.4,66.4c0,3.7,0.4,6.7,1.1,8.9c0.8,2.2,1.8,4.6,3.2,7.2c0.5,0.8,0.7,1.6,0.7,2.3c0,1-0.6,2-1.9,3l-6.3,4.2
11
+ c-0.9,0.6-1.8,0.9-2.6,0.9c-1,0-2-0.5-3-1.4C76.2,90,75,88.4,74,86.8c-1-1.7-2-3.6-3.1-5.9c-7.8,9.2-17.6,13.8-29.4,13.8
12
+ c-8.4,0-15.1-2.4-20-7.2c-4.9-4.8-7.4-11.2-7.4-19.2c0-8.5,3-15.4,9.1-20.6c6.1-5.2,14.2-7.8,24.5-7.8c3.4,0,6.9,0.3,10.6,0.8
13
+ c3.7,0.5,7.5,1.3,11.5,2.2v-7.3c0-7.6-1.6-12.9-4.7-16c-3.2-3.1-8.6-4.6-16.3-4.6c-3.5,0-7.1,0.4-10.8,1.3c-3.7,0.9-7.3,2-10.8,3.4
14
+ c-1.6,0.7-2.8,1.1-3.5,1.3c-0.7,0.2-1.2,0.3-1.6,0.3c-1.4,0-2.1-1-2.1-3.1v-4.9c0-1.6,0.2-2.8,0.7-3.5c0.5-0.7,1.4-1.4,2.8-2.1
15
+ c3.5-1.8,7.7-3.3,12.6-4.5c4.9-1.3,10.1-1.9,15.6-1.9c11.9,0,20.6,2.7,26.2,8.1c5.5,5.4,8.3,13.6,8.3,24.6V66.4z M45.8,81.6
16
+ c3.3,0,6.7-0.6,10.3-1.8c3.6-1.2,6.8-3.4,9.5-6.4c1.6-1.9,2.8-4,3.4-6.4c0.6-2.4,1-5.3,1-8.7v-4.2c-2.9-0.7-6-1.3-9.2-1.7
17
+ c-3.2-0.4-6.3-0.6-9.4-0.6c-6.7,0-11.6,1.3-14.9,4c-3.3,2.7-4.9,6.5-4.9,11.5c0,4.7,1.2,8.2,3.7,10.6
18
+ C37.7,80.4,41.2,81.6,45.8,81.6z M126.1,92.4c-1.8,0-3-0.3-3.8-1c-0.8-0.6-1.5-2-2.1-3.9L96.7,10.2c-0.6-2-0.9-3.3-0.9-4
19
+ c0-1.6,0.8-2.5,2.4-2.5h9.8c1.9,0,3.2,0.3,3.9,1c0.8,0.6,1.4,2,2,3.9l16.8,66.2l15.6-66.2c0.5-2,1.1-3.3,1.9-3.9c0.8-0.6,2.2-1,4-1
20
+ h8c1.9,0,3.2,0.3,4,1c0.8,0.6,1.5,2,1.9,3.9l15.8,67l17.3-67c0.6-2,1.3-3.3,2-3.9c0.8-0.6,2.1-1,3.9-1h9.3c1.6,0,2.5,0.8,2.5,2.5
21
+ c0,0.5-0.1,1-0.2,1.6c-0.1,0.6-0.3,1.4-0.7,2.5l-24.1,77.3c-0.6,2-1.3,3.3-2.1,3.9c-0.8,0.6-2.1,1-3.8,1h-8.6c-1.9,0-3.2-0.3-4-1
22
+ c-0.8-0.7-1.5-2-1.9-4L156,23l-15.4,64.4c-0.5,2-1.1,3.3-1.9,4c-0.8,0.7-2.2,1-4,1H126.1z M254.6,95.1c-5.2,0-10.4-0.6-15.4-1.8
23
+ c-5-1.2-8.9-2.5-11.5-4c-1.6-0.9-2.7-1.9-3.1-2.8c-0.4-0.9-0.6-1.9-0.6-2.8v-5.1c0-2.1,0.8-3.1,2.3-3.1c0.6,0,1.2,0.1,1.8,0.3
24
+ c0.6,0.2,1.5,0.6,2.5,1c3.4,1.5,7.1,2.7,11,3.5c4,0.8,7.9,1.2,11.9,1.2c6.3,0,11.2-1.1,14.6-3.3c3.4-2.2,5.2-5.4,5.2-9.5
25
+ c0-2.8-0.9-5.1-2.7-7c-1.8-1.9-5.2-3.6-10.1-5.2L246,52c-7.3-2.3-12.7-5.7-16-10.2c-3.3-4.4-5-9.3-5-14.5c0-4.2,0.9-7.9,2.7-11.1
26
+ c1.8-3.2,4.2-6,7.2-8.2c3-2.3,6.4-4,10.4-5.2c4-1.2,8.2-1.7,12.6-1.7c2.2,0,4.5,0.1,6.7,0.4c2.3,0.3,4.4,0.7,6.5,1.1
27
+ c2,0.5,3.9,1,5.7,1.6c1.8,0.6,3.2,1.2,4.2,1.8c1.4,0.8,2.4,1.6,3,2.5c0.6,0.8,0.9,1.9,0.9,3.3v4.7c0,2.1-0.8,3.2-2.3,3.2
28
+ c-0.8,0-2.1-0.4-3.8-1.2c-5.7-2.6-12.1-3.9-19.2-3.9c-5.7,0-10.2,0.9-13.3,2.8c-3.1,1.9-4.7,4.8-4.7,8.9c0,2.8,1,5.2,3,7.1
29
+ c2,1.9,5.7,3.8,11,5.5l14.2,4.5c7.2,2.3,12.4,5.5,15.5,9.6c3.1,4.1,4.6,8.8,4.6,14c0,4.3-0.9,8.2-2.6,11.6
30
+ c-1.8,3.4-4.2,6.4-7.3,8.8c-3.1,2.5-6.8,4.3-11.1,5.6C264.4,94.4,259.7,95.1,254.6,95.1z"/>
31
+ <g>
32
+ <path class="st1" d="M273.5,143.7c-32.9,24.3-80.7,37.2-121.8,37.2c-57.6,0-109.5-21.3-148.7-56.7c-3.1-2.8-0.3-6.6,3.4-4.4
33
+ c42.4,24.6,94.7,39.5,148.8,39.5c36.5,0,76.6-7.6,113.5-23.2C274.2,133.6,278.9,139.7,273.5,143.7z"/>
34
+ <path class="st1" d="M287.2,128.1c-4.2-5.4-27.8-2.6-38.5-1.3c-3.2,0.4-3.7-2.4-0.8-4.5c18.8-13.2,49.7-9.4,53.3-5
35
+ c3.6,4.5-1,35.4-18.6,50.2c-2.7,2.3-5.3,1.1-4.1-1.9C282.5,155.7,291.4,133.4,287.2,128.1z"/>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1 @@
1
+ <svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Azure</title><path d="M7.242 1.613A1.11 1.11 0 018.295.857h6.977L8.03 22.316a1.11 1.11 0 01-1.052.755h-5.43a1.11 1.11 0 01-1.053-1.466L7.242 1.613z" fill="url(#lobe-icons-azure-fill-0)"></path><path d="M18.397 15.296H7.4a.51.51 0 00-.347.882l7.066 6.595c.206.192.477.298.758.298h6.226l-2.706-7.775z" fill="#0078D4"></path><path d="M15.272.857H7.497L0 23.071h7.775l1.596-4.73 5.068 4.73h6.665l-2.707-7.775h-7.998L15.272.857z" fill="url(#lobe-icons-azure-fill-1)"></path><path d="M17.193 1.613a1.11 1.11 0 00-1.052-.756h-7.81.035c.477 0 .9.304 1.052.756l6.748 19.992a1.11 1.11 0 01-1.052 1.466h-.12 7.895a1.11 1.11 0 001.052-1.466L17.193 1.613z" fill="url(#lobe-icons-azure-fill-2)"></path><defs><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-azure-fill-0" x1="8.247" x2="1.002" y1="1.626" y2="23.03"><stop stop-color="#114A8B"></stop><stop offset="1" stop-color="#0669BC"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-azure-fill-1" x1="14.042" x2="12.324" y1="15.302" y2="15.888"><stop stop-opacity=".3"></stop><stop offset=".071" stop-opacity=".2"></stop><stop offset=".321" stop-opacity=".1"></stop><stop offset=".623" stop-opacity=".05"></stop><stop offset="1" stop-opacity="0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-azure-fill-2" x1="12.841" x2="20.793" y1="1.626" y2="22.814"><stop stop-color="#3CCBF4"></stop><stop offset="1" stop-color="#2892DF"></stop></linearGradient></defs></svg>
Binary file
@@ -0,0 +1,30 @@
1
+ <svg version="1.1" id="Layer_1" xmlns:x="ns_extend;" xmlns:i="ns_ai;" xmlns:graph="ns_graphs;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 75 75" style="enable-background:new 0 0 75 75;" xml:space="preserve">
2
+ <style type="text/css">
3
+ .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#39594D;}
4
+ .st1{fill-rule:evenodd;clip-rule:evenodd;fill:#D18EE2;}
5
+ .st2{fill:#FF7759;}
6
+ </style>
7
+ <metadata>
8
+ <sfw xmlns="ns_sfw;">
9
+ <slices>
10
+ </slices>
11
+ <sliceSourceBounds bottomLeftOrigin="true" height="75" width="75" x="-347.6" y="0.5">
12
+ </sliceSourceBounds>
13
+ </sfw>
14
+ </metadata>
15
+ <g>
16
+ <g>
17
+ <g>
18
+ <path class="st0" d="M24.3,44.7c2,0,6-0.1,11.6-2.4c6.5-2.7,19.3-7.5,28.6-12.5c6.5-3.5,9.3-8.1,9.3-14.3C73.8,7,66.9,0,58.3,0
19
+ h-36C10,0,0,10,0,22.3S9.4,44.7,24.3,44.7z">
20
+ </path>
21
+ <path class="st1" d="M30.4,60c0-6,3.6-11.5,9.2-13.8l11.3-4.7C62.4,36.8,75,45.2,75,57.6C75,67.2,67.2,75,57.6,75l-12.3,0
22
+ C37.1,75,30.4,68.3,30.4,60z">
23
+ </path>
24
+ <path class="st2" d="M12.9,47.6L12.9,47.6C5.8,47.6,0,53.4,0,60.5v1.7C0,69.2,5.8,75,12.9,75h0c7.1,0,12.9-5.8,12.9-12.9v-1.7
25
+ C25.7,53.4,20,47.6,12.9,47.6z">
26
+ </path>
27
+ </g>
28
+ </g>
29
+ </g>
30
+ </svg>
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>GoogleCloud</title><path d="M15.961 7.327l2.086-2.086.14-.879C14.384.905 8.34 1.297 4.913 5.18A9.643 9.643 0 002.88 8.991l.747-.105 4.172-.688.322-.33c1.856-2.038 4.994-2.312 7.137-.578l.703.037z" fill="#EA4335"></path><path d="M21.02 8.93a9.399 9.399 0 00-2.834-4.568L15.258 7.29a5.204 5.204 0 011.91 4.129v.52a2.606 2.606 0 012.607 2.605c0 1.44-1.167 2.577-2.606 2.577h-5.22l-.512.556v3.126l.513.49h5.219c3.743.03 6.802-2.952 6.83-6.695a6.778 6.778 0 00-2.98-5.668z" fill="#4285F4"></path><path d="M6.738 21.293h5.212v-4.172H6.738c-.371 0-.731-.08-1.069-.234l-.74.227-2.1 2.086-.183.71a6.763 6.763 0 004.092 1.383z" fill="#34A853"></path><path d="M6.738 7.759A6.778 6.778 0 002.646 19.91l3.023-3.023a2.606 2.606 0 113.448-3.448l3.023-3.023a6.771 6.771 0 00-5.402-2.657z" fill="#FBBC05"></path></svg>
@@ -0,0 +1 @@
1
+ <svg height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Gemini</title><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="#3186FF"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-0)"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-1)"></path><path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" fill="url(#lobe-icons-gemini-fill-2)"></path><defs><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-0" x1="7" x2="11" y1="15.5" y2="12"><stop stop-color="#08B962"></stop><stop offset="1" stop-color="#08B962" stop-opacity="0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-1" x1="8" x2="11.5" y1="5.5" y2="11"><stop stop-color="#F94543"></stop><stop offset="1" stop-color="#F94543" stop-opacity="0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="lobe-icons-gemini-fill-2" x1="3.5" x2="17.5" y1="13.5" y2="12"><stop stop-color="#FABC12"></stop><stop offset=".46" stop-color="#FABC12" stop-opacity="0"></stop></linearGradient></defs></svg>
@@ -0,0 +1 @@
1
+ <svg fill="currentColor" fill-rule="evenodd" height="1em" style="flex:none;line-height:1" viewBox="0 0 24 24" width="1em" xmlns="http://www.w3.org/2000/svg"><title>Jina</title><path d="M6.608 21.416a4.608 4.608 0 100-9.217 4.608 4.608 0 000 9.217zM20.894 2.015c.614 0 1.106.492 1.106 1.106v9.002c0 5.13-4.148 9.309-9.217 9.37v-9.355l-.03-9.032c0-.614.491-1.106 1.106-1.106h7.158l-.123.015z"></path></svg>
Binary file