Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
514 changes: 514 additions & 0 deletions FHIR-IMPLEMENTATION-SUMMARY.md

Large diffs are not rendered by default.

127 changes: 127 additions & 0 deletions config/ai-resolution-config.example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
{
"$schema": "./ai-resolution-config.schema.json",
Copy link

Copilot AI Nov 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The $schema field references ./ai-resolution-config.schema.json, but this file does not exist in the repository. This will cause schema validation to fail if users attempt to validate their configuration files using JSON schema validation tools.

Recommendation: Either:

  1. Create the config/ai-resolution-config.schema.json file with the appropriate JSON schema, or
  2. Remove the $schema field if schema validation is not yet supported for this configuration format.
Suggested change
"$schema": "./ai-resolution-config.schema.json",

Copilot uses AI. Check for mistakes.
"aiErrorResolution": {
"enabled": true,
"provider": "azure-openai",
"azure": {
"endpoint": "${AZURE_OPENAI_ENDPOINT}",
"apiKey": "${AZURE_OPENAI_API_KEY}",
"deploymentName": "gpt-4",
"apiVersion": "2024-08-01-preview"
},
"model": {
"maxTokens": 500,
"temperature": 0.3,
"topP": 0.95,
"frequencyPenalty": 0,
"presencePenalty": 0
},
"rateLimit": {
"enabled": true,
"minIntervalMs": 4000,
"maxRequestsPerMinute": 15,
"burstAllowance": 3
},
"phi": {
"redactionEnabled": true,
"validationRequired": true,
"allowedFields": [
"transactionId",
"errorCode",
"statusCategory",
"payer",
"payerId"
],
"customPatterns": []
},
"scenarios": {
"memberIdInvalid": {
"enabled": true,
"priority": "high",
"customPrompt": null
},
"eligibilityIssue": {
"enabled": true,
"priority": "high",
"customPrompt": null
},
"providerCredential": {
"enabled": true,
"priority": "medium",
"customPrompt": null
},
"serviceNotCovered": {
"enabled": true,
"priority": "medium",
"customPrompt": null
},
"priorAuthRequired": {
"enabled": true,
"priority": "high",
"customPrompt": null
},
"duplicateClaim": {
"enabled": true,
"priority": "low",
"customPrompt": null
},
"timelyFiling": {
"enabled": true,
"priority": "low",
"customPrompt": null
},
"codingError": {
"enabled": true,
"priority": "medium",
"customPrompt": null
},
"missingInformation": {
"enabled": true,
"priority": "high",
"customPrompt": null
},
"general": {
"enabled": true,
"priority": "low",
"customPrompt": null
}
},
"monitoring": {
"metricsEnabled": true,
"applicationInsightsEnabled": true,
"logLevel": "info",
"trackTokenUsage": true,
"trackConfidence": true,
"trackProcessingTime": true
},
"caching": {
"enabled": true,
"ttlSeconds": 3600,
"maxEntries": 1000,
"keyStrategy": "errorCode-errorDesc"
},
"fallback": {
"useMockMode": false,
"mockModeOnError": true,
"retryAttempts": 3,
"retryDelayMs": 5000
},
"integration": {
"logicApps": {
"enabled": true,
"workflowName": "rfai277",
"autoResolveEnabled": false
},
"serviceBus": {
"enabled": true,
"topic": "ai-resolutions",
"publishResults": true
},
"applicationInsights": {
"enabled": true,
"connectionString": "${APPLICATIONINSIGHTS_CONNECTION_STRING}",
"trackDependencies": true
}
}
}
}
Loading
Loading