mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
c80e406e95
We've started to receive feedback (after launch) that using only views is confusing. We're considering this as a good practice, as a view serves as a "facade" for your data - however, we decided to let users decide this on their own. Solves the questions from: - https://github.com/cube-js/cube/issues/7028 - https://github.com/langchain-ai/langchain/pull/9690
154 lines
4.7 KiB
Plaintext
154 lines
4.7 KiB
Plaintext
{
|
||
"cells": [
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"# Cube Semantic Layer"
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"This notebook demonstrates the process of retrieving Cube's data model metadata in a format suitable for passing to LLMs as embeddings, thereby enhancing contextual information."
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"### About Cube"
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"[Cube](https://cube.dev/) is the Semantic Layer for building data apps. It helps data engineers and application developers access data from modern data stores, organize it into consistent definitions, and deliver it to every application."
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"Cube’s data model provides structure and definitions that are used as a context for LLM to understand data and generate correct queries. LLM doesn’t need to navigate complex joins and metrics calculations because Cube abstracts those and provides a simple interface that operates on the business-level terminology, instead of SQL table and column names. This simplification helps LLM to be less error-prone and avoid hallucinations."
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"### Example"
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"**Input arguments (mandatory)**\n",
|
||
"\n",
|
||
"`Cube Semantic Loader` requires 2 arguments:\n",
|
||
"\n",
|
||
"- `cube_api_url`: The URL of your Cube's deployment REST API. Please refer to the [Cube documentation](https://cube.dev/docs/http-api/rest#configuration-base-path) for more information on configuring the base path.\n",
|
||
"\n",
|
||
"- `cube_api_token`: The authentication token generated based on your Cube's API secret. Please refer to the [Cube documentation](https://cube.dev/docs/security#generating-json-web-tokens-jwt) for instructions on generating JSON Web Tokens (JWT).\n",
|
||
"\n",
|
||
"**Input arguments (optional)**\n",
|
||
"\n",
|
||
"- `load_dimension_values`: Whether to load dimension values for every string dimension or not.\n",
|
||
"\n",
|
||
"- `dimension_values_limit`: Maximum number of dimension values to load.\n",
|
||
"\n",
|
||
"- `dimension_values_max_retries`: Maximum number of retries to load dimension values.\n",
|
||
"\n",
|
||
"- `dimension_values_retry_delay`: Delay between retries to load dimension values."
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"import jwt\n",
|
||
"from langchain.document_loaders import CubeSemanticLoader\n",
|
||
"\n",
|
||
"api_url = \"https://api-example.gcp-us-central1.cubecloudapp.dev/cubejs-api/v1/meta\"\n",
|
||
"cubejs_api_secret = \"api-secret-here\"\n",
|
||
"security_context = {}\n",
|
||
"# Read more about security context here: https://cube.dev/docs/security\n",
|
||
"api_token = jwt.encode(security_context, cubejs_api_secret, algorithm=\"HS256\")\n",
|
||
"\n",
|
||
"loader = CubeSemanticLoader(api_url, api_token)\n",
|
||
"\n",
|
||
"documents = loader.load()"
|
||
]
|
||
},
|
||
{
|
||
"attachments": {},
|
||
"cell_type": "markdown",
|
||
"metadata": {},
|
||
"source": [
|
||
"Returns a list of documents with the following attributes:\n",
|
||
"\n",
|
||
"- `page_content`\n",
|
||
"- `metadata`\n",
|
||
" - `table_name`\n",
|
||
" - `column_name`\n",
|
||
" - `column_data_type`\n",
|
||
" - `column_title`\n",
|
||
" - `column_description`\n",
|
||
" - `column_values`\n",
|
||
" - `cube_data_obj_type`"
|
||
]
|
||
},
|
||
{
|
||
"cell_type": "code",
|
||
"execution_count": null,
|
||
"metadata": {},
|
||
"outputs": [],
|
||
"source": [
|
||
"# Given string containing page content\n",
|
||
"page_content = 'Users View City, None'\n",
|
||
"\n",
|
||
"# Given dictionary containing metadata\n",
|
||
"metadata = {\n",
|
||
" 'table_name': 'users_view',\n",
|
||
" 'column_name': 'users_view.city',\n",
|
||
" 'column_data_type': 'string',\n",
|
||
" 'column_title': 'Users View City',\n",
|
||
" 'column_description': 'None',\n",
|
||
" 'column_member_type': 'dimension',\n",
|
||
" 'column_values': [\n",
|
||
" 'Austin',\n",
|
||
" 'Chicago',\n",
|
||
" 'Los Angeles',\n",
|
||
" 'Mountain View',\n",
|
||
" 'New York',\n",
|
||
" 'Palo Alto',\n",
|
||
" 'San Francisco',\n",
|
||
" 'Seattle'\n",
|
||
" ],\n",
|
||
" 'cube_data_obj_type': 'view'\n",
|
||
"}"
|
||
]
|
||
}
|
||
],
|
||
"metadata": {
|
||
"language_info": {
|
||
"name": "python"
|
||
},
|
||
"orig_nbformat": 4
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 2
|
||
}
|