Skip to content

Commit

Permalink
Refactored SEC and PIB
Browse files Browse the repository at this point in the history
  • Loading branch information
akshata29 committed Feb 28, 2024
1 parent cf2b268 commit 9a65926
Show file tree
Hide file tree
Showing 50 changed files with 16,274 additions and 280,237 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 185,7 @@ Workshop/videoInferences.json
Workshop/videoInterview.json
Workshop/videoMetaData.json
Workshop/videoShows.json
Workshop/Data/FAME/fameuserguide2022q4.pdf
Workshop/Data/FAME*
Workshop/99_FNF.ipynb
Workshop/Data/FNF*
Workshop/Data/Invoice*
1 change: 0 additions & 1 deletion Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 43,6 @@ CHAT_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.
DOCGENERATOR_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.azurewebsites.net/api/DocGenerator?code=<yourcode>)
INDEXMANAGEMENT_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.azurewebsites.net/api/IndexManagement?code=<yourcode>)
QA_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.azurewebsites.net/api/QuestionAnswering?code=<yourcode>)
SECSEARCH_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.azurewebsites.net/api/SecSearch?code=<yourcode>)
SPEECH_KEY||Speech Service Key
SPEECH_REGION||Region where speech service is deployed <br> (i.e. eastus, southcentralus)
SQLCHAIN_URL||Azure Function URL with host/default key <br> (https://<yourfunction>.azurewebsites.net/api/SqlChain?code=<yourcode>)
Expand Down
20 changes: 0 additions & 20 deletions Deployment/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -668,10 668,6 @@
"name": "QA_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/QuestionAnswering?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "SECSEARCH_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/SecSearch?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "SQLCHAIN_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/SqlChain?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
Expand Down Expand Up @@ -760,22 756,6 @@
"name": "COSMOSCONTAINER",
"value": "[variables('cosmosContainer')]"
},
{
"name": "PIB_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/Pib?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "PIBCHAT_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/PibChat?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "SECDOCPERSIST_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/SecDocPersist?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "SECEXTRACTION_URL",
"value": "[concat('https://', variables('funcAppName'), '.azurewebsites.net/api/SecExtraction?code=', listkeys(concat(resourceId('Microsoft.Web/sites', variables('funcAppName')), '/host/default'), '2018-11-01').functionKeys.default)]"
},
{
"name": "OpenAiChat",
"value": "chat"
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 6,8 @@ The repo provides a way to upload your own data so it's ready to try end to end.

## Updates

* 2/28/2024 - Removed SEC analysis features and it's moved into it's own repo at [sec](https://github.com/akshata29/sec)
* 1/28/2024 - Remove PitchBook features as they are moved into it's own repo at [pib](https://github.com/akshata29/pitchbook)
* 1/19/2024 - Updated the python package & OpenAI > 1.0. Changes made to all Python API for breaking changes introduced in OpenAI and langchain.
* 10/12/2023 - Initial version of [Autonomous](./api/PromptFlow/Autonomous/) PromptFlow. For now supporting the Pinecone indexes, but support for Cognitive Search and Redis will be updated soon.
* 9/29/2023 - Added [Evaluate](./api/PromptFlow/Evaluate/) PromptFlow. Prompt Flow once created in Azure ML, can be attached to your existing run to evaluate against the following evaluation process :
Expand Down Expand Up @@ -90,10 92,6 @@ Groundedness metric is scored on a scale of 1 to 5, with 1 being the worst and 5

![Azure Services](/assets/AskChat.png)

## PIB Architecture

![PIB Architecture](/assets/PIB.png)

## QA over your data with Cache

![QA Cache](/assets/QACache.png)
Expand Down
Loading

0 comments on commit 9a65926

Please sign in to comment.