├── .gitignore ├── LICENSE.md ├── README.md ├── completion_bard.py ├── completion_llama.py ├── completion_openai.py ├── download.bat ├── entity_extractor.py ├── example_cases ├── clinical_lang_text.txt ├── clinical_text.txt ├── clinical_text_2.txt ├── clinical_text_2_es.txt ├── clinical_text_3.txt ├── clinical_text_3_ann.txt ├── clinical_text_es.txt └── in.txt ├── fhir_api.py ├── prompts.py ├── requirements.txt ├── techstack.md ├── techstack.yml ├── test-request.py └── timing_accuracy_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/README.md -------------------------------------------------------------------------------- /completion_bard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/completion_bard.py -------------------------------------------------------------------------------- /completion_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/completion_llama.py -------------------------------------------------------------------------------- /completion_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/completion_openai.py -------------------------------------------------------------------------------- /download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/download.bat -------------------------------------------------------------------------------- /entity_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/entity_extractor.py -------------------------------------------------------------------------------- /example_cases/clinical_lang_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_lang_text.txt -------------------------------------------------------------------------------- /example_cases/clinical_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text.txt -------------------------------------------------------------------------------- /example_cases/clinical_text_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text_2.txt -------------------------------------------------------------------------------- /example_cases/clinical_text_2_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text_2_es.txt -------------------------------------------------------------------------------- /example_cases/clinical_text_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text_3.txt -------------------------------------------------------------------------------- /example_cases/clinical_text_3_ann.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text_3_ann.txt -------------------------------------------------------------------------------- /example_cases/clinical_text_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/clinical_text_es.txt -------------------------------------------------------------------------------- /example_cases/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/example_cases/in.txt -------------------------------------------------------------------------------- /fhir_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/fhir_api.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/requirements.txt -------------------------------------------------------------------------------- /techstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/techstack.md -------------------------------------------------------------------------------- /techstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/techstack.yml -------------------------------------------------------------------------------- /test-request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/test-request.py -------------------------------------------------------------------------------- /timing_accuracy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IHTSDO/llm-chain-entity-extraction/HEAD/timing_accuracy_test.py --------------------------------------------------------------------------------