├── .github ├── ISSUE_TEMPLATE │ ├── verba-feature-template.md │ └── verba-issue-template.md └── workflows │ └── docker-image.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── FRONTEND.md ├── LICENSE ├── MANIFEST.in ├── PYTHON_TUTORIAL.md ├── README.md ├── TECHNICAL.md ├── docker-compose.yml ├── frontend ├── .eslintrc.json ├── .gitignore ├── app │ ├── api.ts │ ├── components │ │ ├── Chat │ │ │ ├── ChatConfig.tsx │ │ │ ├── ChatInterface.tsx │ │ │ ├── ChatMessage.tsx │ │ │ ├── ChatView.tsx │ │ │ └── StatusLabel.tsx │ │ ├── Document │ │ │ ├── ChunkView.tsx │ │ │ ├── ContentView.tsx │ │ │ ├── DocumentExplorer.tsx │ │ │ ├── DocumentMetaView.tsx │ │ │ ├── DocumentSearch.tsx │ │ │ ├── DocumentView.tsx │ │ │ ├── VectorView.tsx │ │ │ └── util.ts │ │ ├── Ingestion │ │ │ ├── BasicSettingView.tsx │ │ │ ├── ComponentView.tsx │ │ │ ├── ConfigurationView.tsx │ │ │ ├── FileComponent.tsx │ │ │ ├── FileSelectionView.tsx │ │ │ └── IngestionView.tsx │ │ ├── Login │ │ │ ├── GettingStarted.tsx │ │ │ └── LoginView.tsx │ │ ├── Navigation │ │ │ ├── InfoComponent.tsx │ │ │ ├── NavButton.tsx │ │ │ ├── NavbarComponent.tsx │ │ │ ├── StatusMessenger.tsx │ │ │ ├── UserModal.tsx │ │ │ ├── VerbaButton.tsx │ │ │ └── util.ts │ │ └── Settings │ │ │ ├── InfoView.tsx │ │ │ ├── SettingsComponent.tsx │ │ │ ├── SettingsView.tsx │ │ │ └── SuggestionView.tsx │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── types.ts │ └── util.ts ├── glsl.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── alps_field_1k.hdr │ ├── cloudy.hdr │ ├── cool_cap.png │ ├── fire_cap.png │ ├── gold_matcap.png │ ├── golden_cap.png │ ├── ice_cap.png │ ├── icon.ico │ ├── macbook.gltf │ ├── next.svg │ ├── shaders │ │ ├── includes │ │ │ └── simplexNoise4d.glsl │ │ └── wobble │ │ │ ├── fragment.glsl │ │ │ └── vertex.glsl │ ├── shiny_cap.png │ ├── silver_cap.png │ ├── verba.glb │ ├── verba.gltf │ ├── verba.png │ ├── vercel.svg │ ├── weaviate.glb │ └── weaviate.png ├── tailwind.config.ts └── tsconfig.json ├── goldenverba ├── .env.example ├── __init__.py ├── components │ ├── __init__.py │ ├── chunk.py │ ├── chunking │ │ ├── CodeChunker.py │ │ ├── HTMLChunker.py │ │ ├── JSONChunker.py │ │ ├── MarkdownChunker.py │ │ ├── RecursiveChunker.py │ │ ├── SemanticChunker.py │ │ ├── SentenceChunker.py │ │ ├── TokenChunker.py │ │ ├── __init__.py │ │ └── chunking_examples.py │ ├── document.py │ ├── embedding │ │ ├── CohereEmbedder.py │ │ ├── GoogleEmbedder.py │ │ ├── OllamaEmbedder.py │ │ ├── OpenAIEmbedder.py │ │ ├── SentenceTransformersEmbedder.py │ │ ├── UpstageEmbedder.py │ │ ├── VoyageAIEmbedder.py │ │ ├── WeaviateEmbedder.py │ │ └── __init__.py │ ├── generation │ │ ├── AnthrophicGenerator.py │ │ ├── CohereGenerator.py │ │ ├── GeminiGenerator.py │ │ ├── GroqGenerator.py │ │ ├── NovitaGenerator.py │ │ ├── OllamaGenerator.py │ │ ├── OpenAIGenerator.py │ │ ├── UpstageGenerator.py │ │ └── __init__.py │ ├── interfaces.py │ ├── managers.py │ ├── reader │ │ ├── AssemblyAIAPI.py │ │ ├── BasicReader.py │ │ ├── FirecrawlReader.py │ │ ├── GitReader.py │ │ ├── HTMLReader.py │ │ ├── UnstructuredAPI.py │ │ ├── UpstageDocumentParse.py │ │ └── __init__.py │ ├── retriever │ │ ├── WindowRetriever.py │ │ └── __init__.py │ ├── types.py │ └── util.py ├── server │ ├── __init__.py │ ├── api.py │ ├── cli.py │ ├── frontend │ │ └── out │ │ │ ├── 404.html │ │ │ ├── _next │ │ │ └── static │ │ │ │ ├── -4xCNh8fW_auOZGuG7OPj │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── 30i2FQTbR7Y4f-UfM6hbP │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── 4ajn2kvxlVqvDvSUh7-up │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── 5piNIBwi9EVvWEGUCt1HJ │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── 5rVRk1H0CSx_t9B72OCkV │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── CZvV6ohXKOaM2HZQjSr_e │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── EK3SdW_8_2ZVH1NNgqlNv │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── FEflRPdxwBXOroRwOpEz6 │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── FcSX1HknjNhe9H0xxw_uy │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── I01L2Qf2M5E8rKySVdfwz │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── KoV36dmdEgYXG0yvTGe3m │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── MYxb6oMzMgqonOwG97TqG │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── QPYBqPy_EgcZIfNhJUgzL │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── SqhqgckvG9-Sxn3_Nq2Rt │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── VZK8jRGqcSpcMf2ZOPpII │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── Y3oNq6sdVkiLcuMaChJwW │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── _LnFD6u1WPj3rRxWv1Mp3 │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── b8NLMEMd7UPwgQ6cqzdXK │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── chunks │ │ │ │ ├── 07115393-160e96bd79d1e493.js │ │ │ │ ├── 07115393-8a796b5d068e3710.js │ │ │ │ ├── 117-2e3ee50cbb6fc8da.js │ │ │ │ ├── 12038df7-a10f1b9476e02872.js │ │ │ │ ├── 12038df7-bbbca262706a9194.js │ │ │ │ ├── 12038df7-bed05817827b4802.js │ │ │ │ ├── 23-2fc6611658866471.js │ │ │ │ ├── 23-b149ce429217dd65.js │ │ │ │ ├── 39209d7c-1514aaef8caa025b.js │ │ │ │ ├── 39209d7c-9eeaeffa37c8b51e.js │ │ │ │ ├── 39209d7c-f601708f0876481f.js │ │ │ │ ├── 39aecf79-2d831b66f40a6478.js │ │ │ │ ├── 39aecf79-474a3d3c48835c08.js │ │ │ │ ├── 39aecf79-8d523cb23043db9d.js │ │ │ │ ├── 472688b4-2c611c3f7f6780f5.js │ │ │ │ ├── 472688b4-f8d4a7fb6705064c.js │ │ │ │ ├── 48507feb-c058e15125ba1e58.js │ │ │ │ ├── 48507feb-cb362b7475ba2891.js │ │ │ │ ├── 48507feb-fb2bbcdbd4adc32f.js │ │ │ │ ├── 4f53ad1b-af82feddb1367bb5.js │ │ │ │ ├── 4f53ad1b-cf02b0f93cf25527.js │ │ │ │ ├── 4f53ad1b-f1821b28dab6f189.js │ │ │ │ ├── 4f9d9cd8-0af0a6a5e34c4b59.js │ │ │ │ ├── 4f9d9cd8-7217d0ac0bfcc7ce.js │ │ │ │ ├── 514-cff62b6f7919676e.js │ │ │ │ ├── 5349c568-74bb20b84335457b.js │ │ │ │ ├── 5349c568-e26f968c6773abca.js │ │ │ │ ├── 737dfa3e-71fd4aa07f7d84a6.js │ │ │ │ ├── 789-e4deefde6e1de3c8.js │ │ │ │ ├── 864-15201e63d2e174b9.js │ │ │ │ ├── 8dc5345f-59beaec077e947c5.js │ │ │ │ ├── 8dc5345f-9a36b2be5ef7459c.js │ │ │ │ ├── 8dc5345f-dfd13b91b6647830.js │ │ │ │ ├── 8e68d877-65c524a5e56473c0.js │ │ │ │ ├── 8e68d877-6d32d357377fbcf8.js │ │ │ │ ├── 9081a741-3f102f6aee474fd0.js │ │ │ │ ├── 9081a741-52789bf6b11470c5.js │ │ │ │ ├── 9081a741-560e37099622c351.js │ │ │ │ ├── 9081a741-599fa98ab2a737de.js │ │ │ │ ├── 9081a741-a7c6599b4221aee8.js │ │ │ │ ├── 949-4b7f5a091d97fe2c.js │ │ │ │ ├── app │ │ │ │ │ ├── _not-found │ │ │ │ │ │ ├── page-26d6c07435b6028b.js │ │ │ │ │ │ ├── page-aaadc9fa354a98b4.js │ │ │ │ │ │ └── page-d0fe2d040a50a096.js │ │ │ │ │ ├── layout-213bbf4a992a0fc8.js │ │ │ │ │ ├── layout-ad434663ed5b1d3a.js │ │ │ │ │ ├── page-09caddcec70c8f21.js │ │ │ │ │ ├── page-107cfe4c05eff918.js │ │ │ │ │ ├── page-1afb38c40393046f.js │ │ │ │ │ ├── page-235aaff141d9263e.js │ │ │ │ │ ├── page-25ed1cb73822cf4e.js │ │ │ │ │ ├── page-317294c5dcc5eacf.js │ │ │ │ │ ├── page-345642b96638188b.js │ │ │ │ │ ├── page-3617b8292b21fc34.js │ │ │ │ │ ├── page-45b34f73d34e8979.js │ │ │ │ │ ├── page-54094d73aee6e252.js │ │ │ │ │ ├── page-5e9b74ed5a1be60e.js │ │ │ │ │ ├── page-61a9fa55e8011365.js │ │ │ │ │ ├── page-63c3d501186e1569.js │ │ │ │ │ ├── page-8184afaea67792bd.js │ │ │ │ │ ├── page-a985ad06a3dcc355.js │ │ │ │ │ ├── page-b8f5daf1c95250b5.js │ │ │ │ │ ├── page-c506ad2929c6e6a6.js │ │ │ │ │ ├── page-de101b2b6802134a.js │ │ │ │ │ ├── page-e15dc604b4004fa4.js │ │ │ │ │ ├── page-f09784266b0febdd.js │ │ │ │ │ ├── page-f3aef3f90382cf14.js │ │ │ │ │ ├── page-f7e98beb8ba64d62.js │ │ │ │ │ └── page-fc144a2905205d63.js │ │ │ │ ├── b536a0f1-cb79989225eaf318.js │ │ │ │ ├── b536a0f1-d8ed58bb9dee20ad.js │ │ │ │ ├── b536a0f1-ea1620b5a816a5f5.js │ │ │ │ ├── bc9c3264-007b030a3d8b973f.js │ │ │ │ ├── bc9c3264-ebee20cfb15b0079.js │ │ │ │ ├── ec3863c0-06201a77cd4ecf61.js │ │ │ │ ├── ec3863c0-0f36e1c42d4712ac.js │ │ │ │ ├── ec3863c0-3299d7812f924fb2.js │ │ │ │ ├── ec3863c0-666dbee8e5822499.js │ │ │ │ ├── ec3863c0-b59cee7fa657bb4d.js │ │ │ │ ├── fd9d1056-3c0a5e4377f054b9.js │ │ │ │ ├── fd9d1056-5afc1fda0426cd7c.js │ │ │ │ ├── fd9d1056-aa9b9ca480dc9276.js │ │ │ │ ├── framework-00a8ba1a63cfdc9e.js │ │ │ │ ├── main-0806fb9f50640b69.js │ │ │ │ ├── main-ab370d8db521f1bb.js │ │ │ │ ├── main-app-6d8fe3bc29305481.js │ │ │ │ ├── main-app-8b51a742f61d77e1.js │ │ │ │ ├── pages │ │ │ │ │ ├── _app-037b5d058bd9a820.js │ │ │ │ │ ├── _app-15e2daefa259f0b5.js │ │ │ │ │ ├── _error-28b803cb2479b966.js │ │ │ │ │ └── _error-6ae619510b1539d6.js │ │ │ │ ├── polyfills-42372ed130431b0a.js │ │ │ │ ├── polyfills-78c92fac7aa8fdd8.js │ │ │ │ ├── webpack-e6d8fc8882b3cc5a.js │ │ │ │ └── webpack-f81a484e456a776b.js │ │ │ │ ├── cpNG_krRh40F8ypWaUA1Y │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── css │ │ │ │ ├── 0ffc59f004ebeefe.css │ │ │ │ ├── 2817a3d3bb800805.css │ │ │ │ ├── ae5cf92d392439f8.css │ │ │ │ ├── b219313ebc6bfc74.css │ │ │ │ ├── b6698fd034c37467.css │ │ │ │ ├── b7332ce1649563ef.css │ │ │ │ ├── bbb58f872eab5c8f.css │ │ │ │ ├── d919237d8b9336c0.css │ │ │ │ ├── fb11073f70ca561d.css │ │ │ │ └── fd8d77da4d075ee8.css │ │ │ │ ├── gjEH1UGrJtEx0lJhUhCoG │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── ifjjNsXVlVkzB0f2yWOlr │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── loIKTVc-LZ1tLrqnZ0_At │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── media │ │ │ │ ├── 034043092db1e233-s.woff2 │ │ │ │ ├── 04c24f78ad5a47d8-s.woff2 │ │ │ │ ├── 062522b8b7c3ad6a-s.woff2 │ │ │ │ ├── 13a314e63820922b-s.woff2 │ │ │ │ ├── 19e37deead9b3ec2-s.woff2 │ │ │ │ ├── 26a46d62cd723877-s.woff2 │ │ │ │ ├── 2b3f1035ed87a788-s.p.woff2 │ │ │ │ ├── 37da3febcafd463e-s.woff2 │ │ │ │ ├── 3d9ea938b6afa941-s.p.woff2 │ │ │ │ ├── 403511e41efd5e81-s.woff2 │ │ │ │ ├── 4049f3f580e14086-s.p.woff2 │ │ │ │ ├── 46392699924ae7e5-s.woff2 │ │ │ │ ├── 51f6eedf9be77cd7-s.woff2 │ │ │ │ ├── 55c55f0601d81cf3-s.woff2 │ │ │ │ ├── 581909926a08bbc8-s.woff2 │ │ │ │ ├── 5d258b355fefebcb-s.p.woff2 │ │ │ │ ├── 636a5ac981f94f8b-s.p.woff2 │ │ │ │ ├── 65053818c3abcf97-s.woff2 │ │ │ │ ├── 6d93bde91c0c2823-s.woff2 │ │ │ │ ├── 6d9d93fc6431e29f-s.woff2 │ │ │ │ ├── 6fe53d21e6e7ebd8-s.woff2 │ │ │ │ ├── 6fed4e5749a3ea15-s.woff2 │ │ │ │ ├── 83651bee47cf14da-s.woff2 │ │ │ │ ├── 84a5d21698cdcea6-s.woff2 │ │ │ │ ├── 8e9860b6e62d6359-s.woff2 │ │ │ │ ├── 8ebc6e9dde468c4a-s.woff2 │ │ │ │ ├── 97e0cb1ae144a2a9-s.woff2 │ │ │ │ ├── 9beef36ab83de3f0-s.woff2 │ │ │ │ ├── a1471ccaedd577d0-s.woff2 │ │ │ │ ├── a34f9d1faa5f3315-s.p.woff2 │ │ │ │ ├── c1a1fe1e2bf9b2ee-s.woff2 │ │ │ │ ├── d6fc113833db48fe-s.woff2 │ │ │ │ ├── dd4ab5b525bd804a-s.woff2 │ │ │ │ ├── df0a9ae256c0569c-s.woff2 │ │ │ │ ├── df5e9368d28a76aa-s.woff2 │ │ │ │ ├── e1df014bb05b8510-s.woff2 │ │ │ │ ├── e4af272ccee01ff0-s.p.woff2 │ │ │ │ ├── e6f5886ae1242622-s.woff2 │ │ │ │ ├── eed6db14ac3b93a0-s.woff2 │ │ │ │ ├── ef64ecae5e1bff42-s.woff2 │ │ │ │ └── faac4ac11aa3d97b-s.woff2 │ │ │ │ ├── pR7o7Axy7wuvopYTQQ4gp │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── ppWjoMOwBDfvgLeNC4RNs │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── sJVEctNLIfCe2KAU81egg │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ ├── tVocASfF6DGpJwQWyOdO9 │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ │ └── yPC90wje_7V701wv-Jubb │ │ │ │ ├── _buildManifest.js │ │ │ │ └── _ssgManifest.js │ │ │ ├── alps_field_1k.hdr │ │ │ ├── cloudy.hdr │ │ │ ├── cool_cap.png │ │ │ ├── fire_cap.png │ │ │ ├── gold_matcap.png │ │ │ ├── golden_cap.png │ │ │ ├── ice_cap.png │ │ │ ├── icon.ico │ │ │ ├── index.html │ │ │ ├── index.txt │ │ │ ├── macbook.gltf │ │ │ ├── next.svg │ │ │ ├── shaders │ │ │ ├── includes │ │ │ │ └── simplexNoise4d.glsl │ │ │ └── wobble │ │ │ │ ├── fragment.glsl │ │ │ │ └── vertex.glsl │ │ │ ├── shiny_cap.png │ │ │ ├── silver_cap.png │ │ │ ├── verba.glb │ │ │ ├── verba.gltf │ │ │ ├── verba.png │ │ │ ├── vercel.svg │ │ │ ├── weaviate.glb │ │ │ └── weaviate.png │ ├── helpers.py │ └── types.py ├── tests │ └── document │ │ └── test_document.py └── verba_manager.py ├── img ├── api_screen.png ├── ollama_running.png ├── thumbnail.png ├── verba.gif ├── verba_architecture.png ├── verba_data.png ├── verba_deployment.png ├── verba_icon.png ├── verba_rag.png ├── verba_screen.png ├── verba_select_embedder.png └── verba_status.png ├── pypi_commands.sh └── setup.py /.github/ISSUE_TEMPLATE/verba-feature-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/.github/ISSUE_TEMPLATE/verba-feature-template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/verba-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/.github/ISSUE_TEMPLATE/verba-issue-template.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/Dockerfile -------------------------------------------------------------------------------- /FRONTEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/FRONTEND.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include goldenverba/server/frontend/out * -------------------------------------------------------------------------------- /PYTHON_TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/PYTHON_TUTORIAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/README.md -------------------------------------------------------------------------------- /TECHNICAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/TECHNICAL.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/app/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/api.ts -------------------------------------------------------------------------------- /frontend/app/components/Chat/ChatConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Chat/ChatConfig.tsx -------------------------------------------------------------------------------- /frontend/app/components/Chat/ChatInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Chat/ChatInterface.tsx -------------------------------------------------------------------------------- /frontend/app/components/Chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Chat/ChatMessage.tsx -------------------------------------------------------------------------------- /frontend/app/components/Chat/ChatView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Chat/ChatView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Chat/StatusLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Chat/StatusLabel.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/ChunkView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/ChunkView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/ContentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/ContentView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/DocumentExplorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/DocumentExplorer.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/DocumentMetaView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/DocumentMetaView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/DocumentSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/DocumentSearch.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/DocumentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/DocumentView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/VectorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/VectorView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Document/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Document/util.ts -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/BasicSettingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/BasicSettingView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/ComponentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/ComponentView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/ConfigurationView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/ConfigurationView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/FileComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/FileComponent.tsx -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/FileSelectionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/FileSelectionView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Ingestion/IngestionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Ingestion/IngestionView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Login/GettingStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Login/GettingStarted.tsx -------------------------------------------------------------------------------- /frontend/app/components/Login/LoginView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Login/LoginView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/InfoComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/InfoComponent.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/NavButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/NavButton.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/NavbarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/NavbarComponent.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/StatusMessenger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/StatusMessenger.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/UserModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/UserModal.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/VerbaButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/VerbaButton.tsx -------------------------------------------------------------------------------- /frontend/app/components/Navigation/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Navigation/util.ts -------------------------------------------------------------------------------- /frontend/app/components/Settings/InfoView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Settings/InfoView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Settings/SettingsComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Settings/SettingsComponent.tsx -------------------------------------------------------------------------------- /frontend/app/components/Settings/SettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Settings/SettingsView.tsx -------------------------------------------------------------------------------- /frontend/app/components/Settings/SuggestionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/components/Settings/SuggestionView.tsx -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/types.ts -------------------------------------------------------------------------------- /frontend/app/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/app/util.ts -------------------------------------------------------------------------------- /frontend/glsl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/glsl.d.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/alps_field_1k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/alps_field_1k.hdr -------------------------------------------------------------------------------- /frontend/public/cloudy.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/cloudy.hdr -------------------------------------------------------------------------------- /frontend/public/cool_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/cool_cap.png -------------------------------------------------------------------------------- /frontend/public/fire_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/fire_cap.png -------------------------------------------------------------------------------- /frontend/public/gold_matcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/gold_matcap.png -------------------------------------------------------------------------------- /frontend/public/golden_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/golden_cap.png -------------------------------------------------------------------------------- /frontend/public/ice_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/ice_cap.png -------------------------------------------------------------------------------- /frontend/public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/icon.ico -------------------------------------------------------------------------------- /frontend/public/macbook.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/macbook.gltf -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/shaders/includes/simplexNoise4d.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/shaders/includes/simplexNoise4d.glsl -------------------------------------------------------------------------------- /frontend/public/shaders/wobble/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/shaders/wobble/fragment.glsl -------------------------------------------------------------------------------- /frontend/public/shaders/wobble/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/shaders/wobble/vertex.glsl -------------------------------------------------------------------------------- /frontend/public/shiny_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/shiny_cap.png -------------------------------------------------------------------------------- /frontend/public/silver_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/silver_cap.png -------------------------------------------------------------------------------- /frontend/public/verba.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/verba.glb -------------------------------------------------------------------------------- /frontend/public/verba.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/verba.gltf -------------------------------------------------------------------------------- /frontend/public/verba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/verba.png -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/public/weaviate.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/weaviate.glb -------------------------------------------------------------------------------- /frontend/public/weaviate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/public/weaviate.png -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /goldenverba/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/.env.example -------------------------------------------------------------------------------- /goldenverba/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunk.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/CodeChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/CodeChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/HTMLChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/HTMLChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/JSONChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/JSONChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/MarkdownChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/MarkdownChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/RecursiveChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/RecursiveChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/SemanticChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/SemanticChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/SentenceChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/SentenceChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/TokenChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/TokenChunker.py -------------------------------------------------------------------------------- /goldenverba/components/chunking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/chunking/chunking_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/chunking/chunking_examples.py -------------------------------------------------------------------------------- /goldenverba/components/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/document.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/CohereEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/CohereEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/GoogleEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/GoogleEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/OllamaEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/OllamaEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/OpenAIEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/OpenAIEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/SentenceTransformersEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/SentenceTransformersEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/UpstageEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/UpstageEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/VoyageAIEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/VoyageAIEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/WeaviateEmbedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/embedding/WeaviateEmbedder.py -------------------------------------------------------------------------------- /goldenverba/components/embedding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/generation/AnthrophicGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/AnthrophicGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/CohereGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/CohereGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/GeminiGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/GeminiGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/GroqGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/GroqGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/NovitaGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/NovitaGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/OllamaGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/OllamaGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/OpenAIGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/OpenAIGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/UpstageGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/generation/UpstageGenerator.py -------------------------------------------------------------------------------- /goldenverba/components/generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/interfaces.py -------------------------------------------------------------------------------- /goldenverba/components/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/managers.py -------------------------------------------------------------------------------- /goldenverba/components/reader/AssemblyAIAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/AssemblyAIAPI.py -------------------------------------------------------------------------------- /goldenverba/components/reader/BasicReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/BasicReader.py -------------------------------------------------------------------------------- /goldenverba/components/reader/FirecrawlReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/FirecrawlReader.py -------------------------------------------------------------------------------- /goldenverba/components/reader/GitReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/GitReader.py -------------------------------------------------------------------------------- /goldenverba/components/reader/HTMLReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/HTMLReader.py -------------------------------------------------------------------------------- /goldenverba/components/reader/UnstructuredAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/UnstructuredAPI.py -------------------------------------------------------------------------------- /goldenverba/components/reader/UpstageDocumentParse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/reader/UpstageDocumentParse.py -------------------------------------------------------------------------------- /goldenverba/components/reader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/retriever/WindowRetriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/retriever/WindowRetriever.py -------------------------------------------------------------------------------- /goldenverba/components/retriever/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/components/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/types.py -------------------------------------------------------------------------------- /goldenverba/components/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/components/util.py -------------------------------------------------------------------------------- /goldenverba/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /goldenverba/server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/api.py -------------------------------------------------------------------------------- /goldenverba/server/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/cli.py -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/404.html -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/-4xCNh8fW_auOZGuG7OPj/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/-4xCNh8fW_auOZGuG7OPj/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/-4xCNh8fW_auOZGuG7OPj/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/-4xCNh8fW_auOZGuG7OPj/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/30i2FQTbR7Y4f-UfM6hbP/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/30i2FQTbR7Y4f-UfM6hbP/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/30i2FQTbR7Y4f-UfM6hbP/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/30i2FQTbR7Y4f-UfM6hbP/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/4ajn2kvxlVqvDvSUh7-up/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/4ajn2kvxlVqvDvSUh7-up/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/4ajn2kvxlVqvDvSUh7-up/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/4ajn2kvxlVqvDvSUh7-up/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/5piNIBwi9EVvWEGUCt1HJ/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/5piNIBwi9EVvWEGUCt1HJ/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/5piNIBwi9EVvWEGUCt1HJ/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/5piNIBwi9EVvWEGUCt1HJ/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/5rVRk1H0CSx_t9B72OCkV/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/5rVRk1H0CSx_t9B72OCkV/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/5rVRk1H0CSx_t9B72OCkV/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/5rVRk1H0CSx_t9B72OCkV/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/CZvV6ohXKOaM2HZQjSr_e/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/CZvV6ohXKOaM2HZQjSr_e/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/CZvV6ohXKOaM2HZQjSr_e/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/CZvV6ohXKOaM2HZQjSr_e/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/EK3SdW_8_2ZVH1NNgqlNv/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/EK3SdW_8_2ZVH1NNgqlNv/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/EK3SdW_8_2ZVH1NNgqlNv/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/EK3SdW_8_2ZVH1NNgqlNv/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/FEflRPdxwBXOroRwOpEz6/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/FEflRPdxwBXOroRwOpEz6/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/FEflRPdxwBXOroRwOpEz6/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/FEflRPdxwBXOroRwOpEz6/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/FcSX1HknjNhe9H0xxw_uy/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/FcSX1HknjNhe9H0xxw_uy/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/FcSX1HknjNhe9H0xxw_uy/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/FcSX1HknjNhe9H0xxw_uy/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/I01L2Qf2M5E8rKySVdfwz/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/I01L2Qf2M5E8rKySVdfwz/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/I01L2Qf2M5E8rKySVdfwz/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/I01L2Qf2M5E8rKySVdfwz/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/KoV36dmdEgYXG0yvTGe3m/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/KoV36dmdEgYXG0yvTGe3m/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/KoV36dmdEgYXG0yvTGe3m/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/KoV36dmdEgYXG0yvTGe3m/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/MYxb6oMzMgqonOwG97TqG/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/MYxb6oMzMgqonOwG97TqG/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/MYxb6oMzMgqonOwG97TqG/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/MYxb6oMzMgqonOwG97TqG/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/QPYBqPy_EgcZIfNhJUgzL/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/QPYBqPy_EgcZIfNhJUgzL/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/QPYBqPy_EgcZIfNhJUgzL/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/QPYBqPy_EgcZIfNhJUgzL/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/SqhqgckvG9-Sxn3_Nq2Rt/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/SqhqgckvG9-Sxn3_Nq2Rt/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/SqhqgckvG9-Sxn3_Nq2Rt/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/SqhqgckvG9-Sxn3_Nq2Rt/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/VZK8jRGqcSpcMf2ZOPpII/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/VZK8jRGqcSpcMf2ZOPpII/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/VZK8jRGqcSpcMf2ZOPpII/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/VZK8jRGqcSpcMf2ZOPpII/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/Y3oNq6sdVkiLcuMaChJwW/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/Y3oNq6sdVkiLcuMaChJwW/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/Y3oNq6sdVkiLcuMaChJwW/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/Y3oNq6sdVkiLcuMaChJwW/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/_LnFD6u1WPj3rRxWv1Mp3/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/_LnFD6u1WPj3rRxWv1Mp3/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/_LnFD6u1WPj3rRxWv1Mp3/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/_LnFD6u1WPj3rRxWv1Mp3/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/b8NLMEMd7UPwgQ6cqzdXK/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/b8NLMEMd7UPwgQ6cqzdXK/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/b8NLMEMd7UPwgQ6cqzdXK/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/b8NLMEMd7UPwgQ6cqzdXK/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/07115393-160e96bd79d1e493.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/07115393-160e96bd79d1e493.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/07115393-8a796b5d068e3710.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/07115393-8a796b5d068e3710.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/117-2e3ee50cbb6fc8da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/117-2e3ee50cbb6fc8da.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/12038df7-a10f1b9476e02872.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/12038df7-a10f1b9476e02872.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/12038df7-bbbca262706a9194.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/12038df7-bbbca262706a9194.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/12038df7-bed05817827b4802.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/12038df7-bed05817827b4802.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/23-2fc6611658866471.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/23-2fc6611658866471.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/23-b149ce429217dd65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/23-b149ce429217dd65.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39209d7c-1514aaef8caa025b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39209d7c-1514aaef8caa025b.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39209d7c-9eeaeffa37c8b51e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39209d7c-9eeaeffa37c8b51e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39209d7c-f601708f0876481f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39209d7c-f601708f0876481f.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39aecf79-2d831b66f40a6478.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39aecf79-2d831b66f40a6478.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39aecf79-474a3d3c48835c08.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39aecf79-474a3d3c48835c08.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/39aecf79-8d523cb23043db9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/39aecf79-8d523cb23043db9d.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/472688b4-2c611c3f7f6780f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/472688b4-2c611c3f7f6780f5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/472688b4-f8d4a7fb6705064c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/472688b4-f8d4a7fb6705064c.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/48507feb-c058e15125ba1e58.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/48507feb-c058e15125ba1e58.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/48507feb-cb362b7475ba2891.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/48507feb-cb362b7475ba2891.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/48507feb-fb2bbcdbd4adc32f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/48507feb-fb2bbcdbd4adc32f.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-af82feddb1367bb5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-af82feddb1367bb5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-cf02b0f93cf25527.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-cf02b0f93cf25527.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-f1821b28dab6f189.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/4f53ad1b-f1821b28dab6f189.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/4f9d9cd8-0af0a6a5e34c4b59.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/4f9d9cd8-0af0a6a5e34c4b59.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/4f9d9cd8-7217d0ac0bfcc7ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/4f9d9cd8-7217d0ac0bfcc7ce.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/514-cff62b6f7919676e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/514-cff62b6f7919676e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/5349c568-74bb20b84335457b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/5349c568-74bb20b84335457b.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/5349c568-e26f968c6773abca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/5349c568-e26f968c6773abca.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/737dfa3e-71fd4aa07f7d84a6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/737dfa3e-71fd4aa07f7d84a6.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/789-e4deefde6e1de3c8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/789-e4deefde6e1de3c8.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/864-15201e63d2e174b9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/864-15201e63d2e174b9.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-59beaec077e947c5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-59beaec077e947c5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-9a36b2be5ef7459c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-9a36b2be5ef7459c.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-dfd13b91b6647830.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/8dc5345f-dfd13b91b6647830.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/8e68d877-65c524a5e56473c0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/8e68d877-65c524a5e56473c0.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/8e68d877-6d32d357377fbcf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/8e68d877-6d32d357377fbcf8.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/9081a741-3f102f6aee474fd0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/9081a741-3f102f6aee474fd0.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/9081a741-52789bf6b11470c5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/9081a741-52789bf6b11470c5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/9081a741-560e37099622c351.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/9081a741-560e37099622c351.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/9081a741-599fa98ab2a737de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/9081a741-599fa98ab2a737de.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/9081a741-a7c6599b4221aee8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/9081a741-a7c6599b4221aee8.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/949-4b7f5a091d97fe2c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/949-4b7f5a091d97fe2c.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-26d6c07435b6028b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-26d6c07435b6028b.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-aaadc9fa354a98b4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-aaadc9fa354a98b4.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-d0fe2d040a50a096.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/_not-found/page-d0fe2d040a50a096.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/layout-213bbf4a992a0fc8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/layout-213bbf4a992a0fc8.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/layout-ad434663ed5b1d3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/layout-ad434663ed5b1d3a.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-09caddcec70c8f21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-09caddcec70c8f21.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-107cfe4c05eff918.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-107cfe4c05eff918.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-1afb38c40393046f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-1afb38c40393046f.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-235aaff141d9263e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-235aaff141d9263e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-25ed1cb73822cf4e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-25ed1cb73822cf4e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-317294c5dcc5eacf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-317294c5dcc5eacf.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-345642b96638188b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-345642b96638188b.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-3617b8292b21fc34.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-3617b8292b21fc34.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-45b34f73d34e8979.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-45b34f73d34e8979.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-54094d73aee6e252.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-54094d73aee6e252.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-5e9b74ed5a1be60e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-5e9b74ed5a1be60e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-61a9fa55e8011365.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-61a9fa55e8011365.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-63c3d501186e1569.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-63c3d501186e1569.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-8184afaea67792bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-8184afaea67792bd.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-a985ad06a3dcc355.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-a985ad06a3dcc355.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-b8f5daf1c95250b5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-b8f5daf1c95250b5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-c506ad2929c6e6a6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-c506ad2929c6e6a6.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-de101b2b6802134a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-de101b2b6802134a.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-e15dc604b4004fa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-e15dc604b4004fa4.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-f09784266b0febdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-f09784266b0febdd.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-f3aef3f90382cf14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-f3aef3f90382cf14.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-f7e98beb8ba64d62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-f7e98beb8ba64d62.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/app/page-fc144a2905205d63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/app/page-fc144a2905205d63.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-cb79989225eaf318.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-cb79989225eaf318.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-d8ed58bb9dee20ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-d8ed58bb9dee20ad.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-ea1620b5a816a5f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/b536a0f1-ea1620b5a816a5f5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/bc9c3264-007b030a3d8b973f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/bc9c3264-007b030a3d8b973f.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/bc9c3264-ebee20cfb15b0079.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/bc9c3264-ebee20cfb15b0079.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-06201a77cd4ecf61.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-06201a77cd4ecf61.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-0f36e1c42d4712ac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-0f36e1c42d4712ac.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-3299d7812f924fb2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-3299d7812f924fb2.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-666dbee8e5822499.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-666dbee8e5822499.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-b59cee7fa657bb4d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/ec3863c0-b59cee7fa657bb4d.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-3c0a5e4377f054b9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-3c0a5e4377f054b9.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-5afc1fda0426cd7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-5afc1fda0426cd7c.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-aa9b9ca480dc9276.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/fd9d1056-aa9b9ca480dc9276.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/framework-00a8ba1a63cfdc9e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/framework-00a8ba1a63cfdc9e.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/main-0806fb9f50640b69.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/main-0806fb9f50640b69.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/main-ab370d8db521f1bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/main-ab370d8db521f1bb.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/main-app-6d8fe3bc29305481.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/main-app-6d8fe3bc29305481.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/main-app-8b51a742f61d77e1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/main-app-8b51a742f61d77e1.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/pages/_app-037b5d058bd9a820.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/pages/_app-037b5d058bd9a820.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/pages/_app-15e2daefa259f0b5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/pages/_app-15e2daefa259f0b5.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/pages/_error-28b803cb2479b966.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/pages/_error-28b803cb2479b966.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/pages/_error-6ae619510b1539d6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/pages/_error-6ae619510b1539d6.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/polyfills-42372ed130431b0a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/polyfills-42372ed130431b0a.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/webpack-e6d8fc8882b3cc5a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/webpack-e6d8fc8882b3cc5a.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/chunks/webpack-f81a484e456a776b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/chunks/webpack-f81a484e456a776b.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/cpNG_krRh40F8ypWaUA1Y/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/cpNG_krRh40F8ypWaUA1Y/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/cpNG_krRh40F8ypWaUA1Y/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/cpNG_krRh40F8ypWaUA1Y/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/0ffc59f004ebeefe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/0ffc59f004ebeefe.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/2817a3d3bb800805.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/2817a3d3bb800805.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/ae5cf92d392439f8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/ae5cf92d392439f8.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/b219313ebc6bfc74.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/b219313ebc6bfc74.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/b6698fd034c37467.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/b6698fd034c37467.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/b7332ce1649563ef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/b7332ce1649563ef.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/bbb58f872eab5c8f.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/bbb58f872eab5c8f.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/d919237d8b9336c0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/d919237d8b9336c0.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/fb11073f70ca561d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/fb11073f70ca561d.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/css/fd8d77da4d075ee8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/css/fd8d77da4d075ee8.css -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/gjEH1UGrJtEx0lJhUhCoG/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/gjEH1UGrJtEx0lJhUhCoG/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/gjEH1UGrJtEx0lJhUhCoG/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/gjEH1UGrJtEx0lJhUhCoG/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/ifjjNsXVlVkzB0f2yWOlr/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/ifjjNsXVlVkzB0f2yWOlr/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/ifjjNsXVlVkzB0f2yWOlr/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/ifjjNsXVlVkzB0f2yWOlr/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/loIKTVc-LZ1tLrqnZ0_At/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/loIKTVc-LZ1tLrqnZ0_At/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/loIKTVc-LZ1tLrqnZ0_At/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/loIKTVc-LZ1tLrqnZ0_At/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/034043092db1e233-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/034043092db1e233-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/04c24f78ad5a47d8-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/04c24f78ad5a47d8-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/062522b8b7c3ad6a-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/062522b8b7c3ad6a-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/13a314e63820922b-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/13a314e63820922b-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/19e37deead9b3ec2-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/19e37deead9b3ec2-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/26a46d62cd723877-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/26a46d62cd723877-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/2b3f1035ed87a788-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/2b3f1035ed87a788-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/37da3febcafd463e-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/37da3febcafd463e-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/3d9ea938b6afa941-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/3d9ea938b6afa941-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/403511e41efd5e81-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/403511e41efd5e81-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/4049f3f580e14086-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/4049f3f580e14086-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/46392699924ae7e5-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/46392699924ae7e5-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/51f6eedf9be77cd7-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/51f6eedf9be77cd7-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/55c55f0601d81cf3-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/55c55f0601d81cf3-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/581909926a08bbc8-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/581909926a08bbc8-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/5d258b355fefebcb-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/5d258b355fefebcb-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/636a5ac981f94f8b-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/636a5ac981f94f8b-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/65053818c3abcf97-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/65053818c3abcf97-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/6d93bde91c0c2823-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/6d93bde91c0c2823-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/6d9d93fc6431e29f-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/6d9d93fc6431e29f-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/6fe53d21e6e7ebd8-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/6fe53d21e6e7ebd8-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/6fed4e5749a3ea15-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/6fed4e5749a3ea15-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/83651bee47cf14da-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/83651bee47cf14da-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/84a5d21698cdcea6-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/84a5d21698cdcea6-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/8e9860b6e62d6359-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/8e9860b6e62d6359-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/8ebc6e9dde468c4a-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/8ebc6e9dde468c4a-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/97e0cb1ae144a2a9-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/97e0cb1ae144a2a9-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/9beef36ab83de3f0-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/9beef36ab83de3f0-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/a1471ccaedd577d0-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/a1471ccaedd577d0-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/a34f9d1faa5f3315-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/a34f9d1faa5f3315-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/c1a1fe1e2bf9b2ee-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/c1a1fe1e2bf9b2ee-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/d6fc113833db48fe-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/d6fc113833db48fe-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/dd4ab5b525bd804a-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/dd4ab5b525bd804a-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/df0a9ae256c0569c-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/df0a9ae256c0569c-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/df5e9368d28a76aa-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/df5e9368d28a76aa-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/e1df014bb05b8510-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/e1df014bb05b8510-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/e4af272ccee01ff0-s.p.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/e4af272ccee01ff0-s.p.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/e6f5886ae1242622-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/e6f5886ae1242622-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/eed6db14ac3b93a0-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/eed6db14ac3b93a0-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/ef64ecae5e1bff42-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/ef64ecae5e1bff42-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/media/faac4ac11aa3d97b-s.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/media/faac4ac11aa3d97b-s.woff2 -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/pR7o7Axy7wuvopYTQQ4gp/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/pR7o7Axy7wuvopYTQQ4gp/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/pR7o7Axy7wuvopYTQQ4gp/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/pR7o7Axy7wuvopYTQQ4gp/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/ppWjoMOwBDfvgLeNC4RNs/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/ppWjoMOwBDfvgLeNC4RNs/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/ppWjoMOwBDfvgLeNC4RNs/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/ppWjoMOwBDfvgLeNC4RNs/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/sJVEctNLIfCe2KAU81egg/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/sJVEctNLIfCe2KAU81egg/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/sJVEctNLIfCe2KAU81egg/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/sJVEctNLIfCe2KAU81egg/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/tVocASfF6DGpJwQWyOdO9/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/tVocASfF6DGpJwQWyOdO9/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/tVocASfF6DGpJwQWyOdO9/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/tVocASfF6DGpJwQWyOdO9/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/yPC90wje_7V701wv-Jubb/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/yPC90wje_7V701wv-Jubb/_buildManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/_next/static/yPC90wje_7V701wv-Jubb/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/_next/static/yPC90wje_7V701wv-Jubb/_ssgManifest.js -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/alps_field_1k.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/alps_field_1k.hdr -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/cloudy.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/cloudy.hdr -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/cool_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/cool_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/fire_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/fire_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/gold_matcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/gold_matcap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/golden_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/golden_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/ice_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/ice_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/icon.ico -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/index.html -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/index.txt -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/macbook.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/macbook.gltf -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/next.svg -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/shaders/includes/simplexNoise4d.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/shaders/includes/simplexNoise4d.glsl -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/shaders/wobble/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/shaders/wobble/fragment.glsl -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/shaders/wobble/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/shaders/wobble/vertex.glsl -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/shiny_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/shiny_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/silver_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/silver_cap.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/verba.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/verba.glb -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/verba.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/verba.gltf -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/verba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/verba.png -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/vercel.svg -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/weaviate.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/weaviate.glb -------------------------------------------------------------------------------- /goldenverba/server/frontend/out/weaviate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/frontend/out/weaviate.png -------------------------------------------------------------------------------- /goldenverba/server/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/helpers.py -------------------------------------------------------------------------------- /goldenverba/server/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/server/types.py -------------------------------------------------------------------------------- /goldenverba/tests/document/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/tests/document/test_document.py -------------------------------------------------------------------------------- /goldenverba/verba_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/goldenverba/verba_manager.py -------------------------------------------------------------------------------- /img/api_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/api_screen.png -------------------------------------------------------------------------------- /img/ollama_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/ollama_running.png -------------------------------------------------------------------------------- /img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/thumbnail.png -------------------------------------------------------------------------------- /img/verba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba.gif -------------------------------------------------------------------------------- /img/verba_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_architecture.png -------------------------------------------------------------------------------- /img/verba_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_data.png -------------------------------------------------------------------------------- /img/verba_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_deployment.png -------------------------------------------------------------------------------- /img/verba_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_icon.png -------------------------------------------------------------------------------- /img/verba_rag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_rag.png -------------------------------------------------------------------------------- /img/verba_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_screen.png -------------------------------------------------------------------------------- /img/verba_select_embedder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_select_embedder.png -------------------------------------------------------------------------------- /img/verba_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/img/verba_status.png -------------------------------------------------------------------------------- /pypi_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/pypi_commands.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weaviate/Verba/HEAD/setup.py --------------------------------------------------------------------------------