Skip to content

Commit

Permalink
Rename functions in readme (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkells authored Jun 6, 2024
1 parent 45806d7 commit c7ab335
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ class myCDS(ClinicalDecisionSupport):

# Sets up an instance of a mock EHR client of the specified workflow
@hc.ehr(workflow="patient-view")
def load_data(self):
def ehr_database_client(self):
self.data_generator.generate()
return self.data_generator.data

# Define your application logic here
@hc.api
def service(self, request: str):
def llm_server(self, request: str):
result = "Hello " + request["patient_name"]
return result

Expand Down

0 comments on commit c7ab335

Please sign in to comment.