You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: language/de.json
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -245,6 +245,15 @@
245
245
"chunkSizeOverlapText": "Geben Sie die Größe der Überlappung zwischen Chunks an",
246
246
"chunkSeparatorText": "Geben Sie die Seperators ein. Stellen Sie dabei sicher das jeder Seperator in einfachen Anführungszeichen ist und durch Kommata getrennt sind",
247
247
"ragBuilderVectorDBHeader": "Wählen Sie eine Vector Datenbank für Ihr Projekt",
248
-
"ragBuilderVectorDBDescription": "Eine Vektor Datenbank (Vektor-DB) ist eine Art von Datenbank, die Daten als hochdimensionale Vektoren speichert. Diese Vektoren sind numerische Darstellungen von Daten. Sie werden von Embedding-Modellen erstellt und erfassen die semantische Bedeutung und die wichtigsten Merkmale der ursprünglichen Daten."
248
+
"ragBuilderVectorDBDescription": "Eine Vektor Datenbank (Vektor-DB) ist eine Art von Datenbank, die Daten als hochdimensionale Vektoren speichert. Diese Vektoren sind numerische Darstellungen von Daten. Sie werden von Embedding-Modellen erstellt und erfassen die semantische Bedeutung und die wichtigsten Merkmale der ursprünglichen Daten. Für die Verbindung zu den Vektor-Datenbanken muss beim deployment des RAG Setups dann Umgebungsvariablen gesetzt werden. Diese Informationen finden sich als Deployment-Notes.md zusammen mit dem RAG Setup im SAS Model Manager.",
249
+
"chromaDescriptor": "Chroma ist eine open-source, embedding database, mit der man auch auf einem lokalen Rechner einfach starten kann. Sie wurde speziell für die Entwicklung von KI-Anwendungen wie RAG konzipiert und ist bekannt für ihre Benutzerfreundlichkeit und Entwicklerfreundlichkeit. Chroma konzentriert sich darauf, eine reine Vektordatenbank zu sein, die vector embeddings und ihre Metadaten speichert, um eine schnelle semantische Suche zu ermöglichen. <br><ul><li><b>Use Case:</b> Chroma ist eine ausgezeichnete Wahl für einen Machbarkeitsnachweis (Proof-of-Concept) oder für schnelles Prototyping. Ihr schlanker Charakter und die einfache Einrichtung machen sie ideal, um schnell eine Idee zu testen, Bilder, Videos oder andere Inhalte basierend auf Text oder anderen Eingaben abzurufen, ohne die Komplexität eines größeren Datenbanksystems.</li></ul>",
250
+
"pgVectorDescriptor": "pgVector ist eine open-source Erweiterung, die die robuste und funktionsreiche relationale PostgreSQL-Datenbank in eine Vektordatenbank verwandelt. Sie ermöglicht es, vector embeddings neben Ihren strukturierten Daten zu speichern und abzufragen, was Ihre Architektur vereinfacht, da keine separate Datenbank für Ihre Vektoren erforderlich ist. pgVector nutzt die vollumfänglichen SQL-Funktionen von PostgreSQL, einschließlich Joins und Filtern, um hybride Suchvorgänge durchzuführen. <br><ul><li><b>Use Case:</b> pgVector ist eine gute Option für eine Anwendung, die komplexe, multimodale Abfragen erfordert. Zum Beispiel eine Suche, die ein Bild basierend auf der Textbeschreibung eines Benutzers findet und gleichzeitig die Ergebnisse basierend auf strukturierten Daten wie dem Preis, der Kategorie und der Verfügbarkeit des Produkts filtert.</li></ul>",
251
+
"singleStoreDescriptor": "SingleStore ist eine verteilte SQL-Datenbank, die Transaktionen und Echtzeitanalysen mit integrierten Vektorfunktionen vereint. Im Gegensatz zu einer spezialisierten Vektordatenbank ist SingleStore eine Multi-Modell-Datenbank, die sowohl traditionelle relationale Daten als auch Vektoren verarbeiten kann. Dies ermöglicht leistungsstarke hybride Suchvorgänge, die die Geschwindigkeit einer Vektorsuche mit der tiefen Filterung und der analytischen Leistungsfähigkeit von SQL kombinieren.<br><ul><li><b>Use Case:</b> SingleStore eignet sich am besten für eine Anwendung auf Unternehmensebene, die in einem massiven Umfang und mit geringer Latenz betrieben werden muss. Ihre Architektur ist ideal für Anwendungen wie eine große E-Commerce-Plattform, die Echtzeitsuchen in einem Produktkatalog mit Millionen von Artikeln durchführen und diese Daten gleichzeitig sofort mit Kundenanalysen, Bestandsdaten und der Bestellhistorie verknüpfen muss.</li></ul>",
252
+
"ragBuilderVectorDBCollectionInputLabel": "Geben Sie einen Namen für die Collection ein: ",
253
+
"ragBuilderVectorDBDatabaseInputLabel": "Geben Sie den Namen der Datenbank ein: ",
254
+
"ragBuilderVectorDBTableInputLabel": "Geben Sie einen Namen für die Tabelle ein: ",
255
+
"ragBuilderEmbeddingModelHeader": "Wählen Sie das Embedding Modell für Ihr Projekt",
256
+
"ragBuilderEmbeddingModelDescription": "Embedding-Modelle sind grundlegend für RAG-Systeme, da sie bestimmen, wie Ihre Textdaten in numerische Vektoren umgewandelt werden. Ziel ist es, embeddings zu erstellen, die die semantische Bedeutung Ihres Textes präzise erfassen, damit das System die relevantesten Informationen finden kann.",
Copy file name to clipboardExpand all lines: language/en.json
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -245,6 +245,15 @@
245
245
"chunkSizeOverlapText": "Specify the size of the overlap of chunks",
246
246
"chunkSeparatorText": "Specify the list of separators. Make sure they are in single quotes and separated by commas",
247
247
"ragBuilderVectorDBHeader": "Select a Vector DB for your project",
248
-
"ragBuilderVectorDBDescription": "A vector database (vector DB) is a type of database that stores data as high-dimensional vectors, which are numerical representations of data. These vectors, often called embeddings, are created by embedding models and capture the semantic meaning and key features of the original data."
248
+
"ragBuilderVectorDBDescription": "A vector database (vector DB) is a type of database that stores data as high-dimensional vectors, which are numerical representations of data. These vectors, often called embeddings, are created by embedding models and capture the semantic meaning and key features of the original data. For the connection with the vector DB additional information might be required for the deployment of the RAG setup. The required environment will be stored along the RAG Setup in SAS Model Manager in Deployment-Notes.md.",
249
+
"chromaDescriptor": "Chroma is an open-source, AI-native embedding database that's simple to get started with, even on a local machine. It's designed specifically for building AI applications like RAG and is known for its ease of use and developer-friendly nature. Chroma is focused on being a pure vector database, storing vector embeddings and their metadata to enable fast semantic search.<br><ul><li><b>Use Case:</b> Chroma is an excellent choice for a proof-of-concept or for rapid prototyping. Its lightweight nature and simple setup make it ideal for quickly testing an idea to retrieve images, videos, or other content based on text or other inputs, without the complexity of a larger database system.</li></ul>",
250
+
"pgVectorDescriptor": "pgVector is an open-source extension that turns the robust and feature-rich PostgreSQL relational database into a vector database. It allows you to store and query vector embeddings alongside your structured data, simplifying your architecture by not requiring a separate database for your vectors. pgVector leverages PostgreSQL's full-featured SQL capabilities, including joins and filtering, to perform hybrid searches. <br><ul><li><b>Use Case:</b> pgVector is a strong option for an application that requires the ability to perform complex, multimodal queries. For example, a search that finds an image based on a user's text description, while simultaneously filtering the results based on structured data like the product's price, category, and availability.</li></ul>",
251
+
"singleStoreDescriptor": "SingleStore is a distributed SQL database that unifies transactions and real-time analytics with built-in vector capabilities. Unlike a specialized vector database, SingleStore is a multi-model database that can handle traditional relational data as well as vectors. This allows for powerful hybrid searches that combine the speed of a vector search with the deep filtering and analytical power of SQL.<br><ul><li><b>Use Case:</b> SingleStore is best suited for an enterprise-level application that needs to operate at a massive scale with low latency. Its architecture is ideal for applications like a large e-commerce platform that needs to perform real-time searches across a product catalog of millions of items, while also instantly joining that data with customer analytics, inventory data, and order history.</li></ul>",
252
+
"ragBuilderVectorDBCollectionInputLabel": "Enter the name of collection: ",
253
+
"ragBuilderVectorDBDatabaseInputLabel": "Enter the name of the database: ",
254
+
"ragBuilderVectorDBTableInputLabel": "Enter the name of the table: ",
255
+
"ragBuilderEmbeddingModelHeader": "Select the Embedding Model for your project",
256
+
"ragBuilderEmbeddingModelDescription": "Embedding models are fundamental to RAG systems, as they determine how your text data is converted into numerical vectors. The goal is to create embeddings that accurately capture the semantic meaning of your text, allowing the system to find the most relevant information.",
0 commit comments