Skip to content

Commit

Permalink
update notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
zainhoda committed Jul 19, 2023
1 parent 23aeff1 commit 6c83b13
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions notebooks/vn-full.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
"metadata": {},
"outputs": [],
"source": [
"my_org = # Enter your organization here. This is a globally unique identifier for your organization.\n",
"vn.set_org(my_org)"
"my_dataset = # Enter your dataset here. This is a globally unique identifier for your dataset.\n",
"vn.use_datasets([my_dataset])"
]
},
{
Expand Down
6 changes: 3 additions & 3 deletions notebooks/vn-starter.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Choose Organization\n",
"We need to choose an organization. In this example, we use a demo organization that every user on Vanna has access to called `demo-tpc-h`. This is the [default TPC dataset](https://www.tpc.org/tpch/) that comes with every installation of Snowflake and represents a small business. [Details about this dataset are here](https://docs.snowflake.com/en/user-guide/sample-data-tpch). The training data for this organization is [here](https://github.com/vanna-ai/vanna-training-queries/blob/main/tpc-h/questions.json)"
"# Choose Datasets\n",
"We need to choose which datasets we want to use. In this example, we use a demo dataset that every user on Vanna has access to called `demo-tpc-h`. This is the [default TPC dataset](https://www.tpc.org/tpch/) that comes with every installation of Snowflake and represents a small business. [Details about this dataset are here](https://docs.snowflake.com/en/user-guide/sample-data-tpch). The training data for this dataset is [here](https://github.com/vanna-ai/vanna-training-queries/blob/main/tpc-h/questions.json)"
]
},
{
Expand All @@ -69,7 +69,7 @@
"metadata": {},
"outputs": [],
"source": [
"vn.set_org('demo-tpc-h')"
"vn.use_datasets(['demo-tpc-h'])"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions notebooks/vn-training.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Set your Organization\n",
"You need to choose a globally unique organization name. Try using your company name or another unique string. All data from organizations are isolated - there's no leakage."
"# Set your Dataset\n",
"You need to choose a globally unique organization name. Try using your company name or another unique string. All data from datasets are isolated - there's no leakage. Datasets are private by default. You can add other users to your dataset later."
]
},
{
Expand All @@ -69,8 +69,8 @@
"metadata": {},
"outputs": [],
"source": [
"my_org = # Enter your organization here. This is a globally unique identifier for your organization.\n",
"vn.set_org(my_org)"
"my_dataset = # Enter your dataset name here. This is a globally unique identifier for your dataset.\n",
"vn.use_datasets([my_dataset])"
]
},
{
Expand Down

0 comments on commit 6c83b13

Please sign in to comment.