-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
469 additions
and
41 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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,60 @@ | ||
"""Example of using LLMs with PyOMOP | ||
git clone https://github.com/dermatologist/pyomop.git@develop | ||
cd pyomop | ||
pip install -e .[llm] | ||
""" | ||
|
||
from pyomop import CdmEngineFactory, Cohort, metadata, CdmLLMQuery, CDMDatabase | ||
import datetime | ||
import asyncio | ||
# Import any LLMs that llama_index supports and you have access to | ||
# Require OpenAI API key to use OpenAI LLMs | ||
from llama_index.llms import Vertex | ||
|
||
async def main(): | ||
# Create a sqllite database by default | ||
# You can also connect to an existing CDM database using the CdmEngineFactory | ||
cdm = CdmEngineFactory() | ||
# Postgres example below (db='mysql' also supported) | ||
# cdm = CdmEngineFactory(db='pgsql', host='', port=5432, | ||
# user='', pw='', | ||
# name='', schema='cdm6') | ||
|
||
engine = cdm.engine | ||
# Create Tables if required | ||
await cdm.init_models(metadata) | ||
|
||
async with cdm.session() as session: | ||
async with session.begin(): | ||
|
||
# Adding a cohort just for the example (not required if you have a OMOP CDM database) | ||
session.add(Cohort(cohort_definition_id=2, subject_id=100, | ||
cohort_end_date=datetime.datetime.now(), | ||
cohort_start_date=datetime.datetime.now())) | ||
await session.commit() | ||
|
||
# Use any LLM that llama_index supports | ||
llm = Vertex( | ||
model="chat-bison", | ||
) | ||
# Include tables that you want to query | ||
sql_database = CDMDatabase(engine, include_tables=[ | ||
"cohort", | ||
]) | ||
query_engine = CdmLLMQuery(sql_database, llm=llm) | ||
# Try any complex query. | ||
response = query_engine.query("Show each in table cohort with a subject id of 100?") | ||
print(response) | ||
""" | ||
| cohort_id | subject_id | cohort_name | | ||
|---|---|---| | ||
| 1 | 100 | Math | | ||
""" | ||
# Close session | ||
await session.close() | ||
await engine.dispose() | ||
|
||
# Run the main function | ||
asyncio.run(main()) |
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
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
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
Oops, something went wrong.