Update Playground AYOD RAG Prompt Flow Model Version (#2501)
* Update description.md * Update model.yaml * Update spec.yaml * Update test_config.json for playground-ayod-rag P1 * Update test_config.json: update P2 * Create test_data.json with test example * Update .cspell.json: ignore jsonl file types
This commit is contained in:
Родитель
039876c9e8
Коммит
0d23efe3e7
|
@ -159,9 +159,10 @@
|
|||
"**.jinja2",
|
||||
"**.txt",
|
||||
"**.json",
|
||||
"**.jsonl",
|
||||
"**/asset.yaml",
|
||||
"**/description.md",
|
||||
"**/model.yaml"
|
||||
],
|
||||
"allowCompoundWords": true
|
||||
}
|
||||
}
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -1,8 +1,8 @@
|
|||
path:
|
||||
container_name: models
|
||||
container_path: samples/playground_ayod_rag/v1/models
|
||||
container_path: samples/playground_ayod_rag/v3/models
|
||||
storage_name: wedpromptflowragsamples
|
||||
type: azureblob
|
||||
publish:
|
||||
description: description.md
|
||||
type: custom_model
|
||||
type: custom_model
|
||||
|
|
|
@ -5,8 +5,8 @@ properties:
|
|||
is-promptflow: true
|
||||
azureml.promptflow.section: gallery
|
||||
azureml.promptflow.type: chat
|
||||
azureml.promptflow.name: Multi-turn Playground - Add your data RAG
|
||||
azureml.promptflow.description: Create a RAG based chatbot that uses LLM and data from your own indexed files to ground multi-turn question and answering capabilities in enterprise chat scenarios.
|
||||
azureml.promptflow.name: Advanced Chat on Your Data
|
||||
azureml.promptflow.description: Create an advanced RAG flow modeled on the implementation of Azure AI Playground - on Your Data.
|
||||
inference-min-sku-spec: 2|0|14|28
|
||||
inference-recommended-sku: Standard_DS3_v2
|
||||
version: 1
|
||||
version: 3
|
||||
|
|
|
@ -1,18 +1,25 @@
|
|||
{
|
||||
"nodes": [
|
||||
{
|
||||
"name": "DetermineIntent",
|
||||
"name": "rewriteIntent",
|
||||
"connection": "aoai_connection",
|
||||
"inputs": {
|
||||
"deployment_name": "gpt-35-turbo"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "DetermineReply",
|
||||
"name": "querySearchResource",
|
||||
"inputs": {
|
||||
"mlindex_content": "embeddings:\r\n kind: none\r\n schema_version: '2'\r\nindex:\r\n api_version: 2023-07-01-Preview\r\n connection:\r\n id: \/subscriptions\/96aede12-2f73-41cb-b983-6d11a904839b\/resourceGroups\/promptflow\/providers\/Microsoft.MachineLearningServices\/workspaces\/chjinche-pf-eus\/connections\/AzureAISearch\r\n connection_type: workspace_connection\r\n endpoint: https:\/\/cogsearch-embeddingstore.search.windows.net\r\n engine: azure-sdk\r\n field_mapping:\r\n content: content\r\n embedding: null\r\n metadata: null\r\n index: test-vector-index-acs-built-for-awesome-vector-search\r\n kind: acs\r\n semantic_configuration_name: default",
|
||||
"query_type": "Semantic"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "generateReply",
|
||||
"connection": "aoai_connection",
|
||||
"inputs": {
|
||||
"deployment_name": "gpt-35-turbo"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
{
|
||||
"query": "what is Faiss?",
|
||||
"chat_history": []
|
||||
}
|
||||
]
|
Загрузка…
Ссылка в новой задаче