-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #510 from solliancenet/cp-resource-provider-deploy…
…-artifacts Adding resource-provider deploy artifacts
- Loading branch information
Showing
5 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
deploy/data/resource-provider/FoundationaLLM.Agent/internal-context.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"name": "internal-context", | ||
"type": "knowledge-management", | ||
"description": "Session-less agent that issues the user prompt directly to the language model.", | ||
"language_model": { | ||
"type": "openai", | ||
"provider": "microsoft", | ||
"temperature": 0, | ||
"use_chat": true, | ||
"api_endpoint": "FoundationaLLM:AzureOpenAI:API:Endpoint", | ||
"api_key": "FoundationaLLM:AzureOpenAI:API:Key", | ||
"api_version": "FoundationaLLM:AzureOpenAI:API:Version", | ||
"version": "FoundationaLLM:AzureOpenAI:API:Completions:ModelVersion", | ||
"deployment": "FoundationaLLM:AzureOpenAI:API:Completions:DeploymentName" | ||
}, | ||
"sessions_enabled": false, | ||
"conversation_history": { | ||
"enabled": false | ||
}, | ||
"gatekeeper": { | ||
"use_system_setting": true | ||
}, | ||
"orchestrator": "LangChain" | ||
} |
3 changes: 3 additions & 0 deletions
3
...resource-provider/FoundationaLLM.Vectorization/vectorization-content-source-profiles.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"ContentSourceProfiles": [] | ||
} |
17 changes: 17 additions & 0 deletions
17
.../data/resource-provider/FoundationaLLM.Vectorization/vectorization-indexing-profiles.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"IndexingProfiles": [ | ||
{ | ||
"Name": "AzureAISearch_Default_001", | ||
"Description": "Azure AI Search index for vectorization.", | ||
"Indexer": "AzureAISearchIndexer", | ||
"Settings": { | ||
"IndexName": "fllm-default-001" | ||
}, | ||
"ConfigurationReferences": { | ||
"APIKey": "FoundationaLLM:Vectorization:AzureAISearchIndexingService:APIKey", | ||
"AuthenticationType": "FoundationaLLM:Vectorization:AzureAISearchIndexingService:AuthenticationType", | ||
"Endpoint": "FoundationaLLM:Vectorization:AzureAISearchIndexingService:Endpoint" | ||
} | ||
} | ||
] | ||
} |
16 changes: 16 additions & 0 deletions
16
...resource-provider/FoundationaLLM.Vectorization/vectorization-text-embedding-profiles.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"TextEmbeddingProfiles": [ | ||
{ | ||
"Name": "AzureOpenAI_Embedding", | ||
"TextEmbedding": "SemanticKernelTextEmbedding", | ||
"Settings": { | ||
}, | ||
"ConfigurationReferences": { | ||
"APIKey": "FoundationaLLM:Vectorization:SemanticKernelTextEmbeddingService:APIKey", | ||
"AuthenticationType": "FoundationaLLM:Vectorization:SemanticKernelTextEmbeddingService:AuthenticationType", | ||
"DeploymentName": "FoundationaLLM:Vectorization:SemanticKernelTextEmbeddingService:DeploymentName", | ||
"Endpoint": "FoundationaLLM:Vectorization:SemanticKernelTextEmbeddingService:Endpoint" | ||
} | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
...ource-provider/FoundationaLLM.Vectorization/vectorization-text-partitioning-profiles.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"TextPartitioningProfiles": [ | ||
{ | ||
"Name": "DefaultTokenTextPartition", | ||
"TextSplitter": "TokenTextSplitter", | ||
"Settings": { | ||
"Tokenizer": "MicrosoftBPETokenizer", | ||
"TokenizerEncoder": "cl100k_base", | ||
"ChunkSizeTokens": "2000", | ||
"OverlapSizeTokens": "200" | ||
} | ||
} | ||
] | ||
} |