Skip to content

Commit

Permalink
[LLM] RAG Examples - Remove link to old registry (#2519)
Browse files Browse the repository at this point in the history
Co-authored-by: Gerard <GerardJWoods@live.com>
  • Loading branch information
gjwoods and Gerard authored Aug 2, 2023
1 parent 01f65c5 commit f438719
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@
"### Setup Pipeline to process data into Index\n",
"AzureML [Pipelines](https://learn.microsoft.com/en-us/azure/machine-learning/concept-ml-pipelines?view=azureml-api-2) connect together multiple [Components](https://learn.microsoft.com/en-us/azure/machine-learning/concept-component?view=azureml-api-2). Each Component defines inputs, code that consumes the inputs and outputs produced from the code. Pipelines themselves can have inputs, and outputs produced by connecting together individual sub Components. To process your data for embedding and indexing we will chain together multiple components each performing their own step of the workflow.\n",
"\n",
"The Components are published to a [Registry](https://learn.microsoft.com/en-us/azure/machine-learning/how-to-manage-registries?view=azureml-api-2&tabs=cli), azureml-preview, which should have access to after signing up to the Generative AI Private Preview, it can be accessed from any Workspace as long as your Tenant has been granted access. In the below cell we get the Component Definitions from the azureml-preview registry."
"The Components are published to a [Registry](https://learn.microsoft.com/en-us/azure/machine-learning/how-to-manage-registries?view=azureml-api-2&tabs=cli), azureml, which should have access to after signing up to the Generative AI Private Preview, it can be accessed from any Workspace as long as your Tenant has been granted access. In the below cell we get the Component Definitions from the azureml registry."
]
},
{
Expand All @@ -380,7 +380,7 @@
},
"outputs": [],
"source": [
"ml_registry = MLClient(credential=credential, registry_name=\"azureml-preview\")\n",
"ml_registry = MLClient(credential=credential, registry_name=\"azureml\")\n",
"\n",
"# Clones git repository to output folder of pipeline, by default this will be on the default Workspace Datastore `workspaceblobstore`\n",
"git_clone_component = ml_registry.components.get(\"llm_rag_git_clone\", label=\"latest\")\n",
Expand Down

0 comments on commit f438719

Please sign in to comment.