Spaces:
Sleeping
Sleeping
Update TestFindingAgent.py
Browse files- TestFindingAgent.py +8 -0
TestFindingAgent.py
CHANGED
|
@@ -11,6 +11,14 @@ from langchain_openai import ChatOpenAI, OpenAIEmbeddings
|
|
| 11 |
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
| 12 |
from langchain_community.vectorstores import Chroma
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
class TestFindingAgent:
|
| 15 |
def __init__(self, hcc_code: str, model_version: str,
|
| 16 |
model: str = "gpt-4o", output_file: Optional[str] = None):
|
|
|
|
| 11 |
from langchain.text_splitter import RecursiveCharacterTextSplitter
|
| 12 |
from langchain_community.vectorstores import Chroma
|
| 13 |
|
| 14 |
+
SEED_SOURCES = [
|
| 15 |
+
"https://www.cms.gov/medicare/payment/medicare-advantage-rates-statistics/risk-adjustment",
|
| 16 |
+
"https://www.cms.gov/data-research/monitoring-programs/medicare-risk-adjustment-data-validation-program",
|
| 17 |
+
"https://www.cms.gov/files/document/fy-2024-icd-10-cm-coding-guidelines-updated-02/01/2024.pdf",
|
| 18 |
+
"https://www.aapc.com/blog/41212-include-meat-in-your-risk-adjustment-documentation/",
|
| 19 |
+
]
|
| 20 |
+
|
| 21 |
+
|
| 22 |
class TestFindingAgent:
|
| 23 |
def __init__(self, hcc_code: str, model_version: str,
|
| 24 |
model: str = "gpt-4o", output_file: Optional[str] = None):
|