Concepts
Workspace
Workspaces helps you encapsulate related resources that would be shared between your teams. Workspaces are a good way to separate different teams or projects you work on in a group setting.
Document Store
A collection that is designed to hold related documents. This can also be used as a vector store within LangChain. In an LLM applications, this collection would often be used store static documents like PDFs, web pages, or any form of text, to give your agent long-term memory. Without our document store, we offer easy way to add various document types and import documents from other applications
Document
Static body of texts that are added to document stores such as PDFs or parsed websites
Integration
Used to manage all your external app accesses, such as Notion or GitHub, for your workspace.
Agents
LLM application that has access to various tools, such as document store or external API. Given a user input, agent will find which tool to use, retrieve the appropriate context, and answer an users question.