Benjamin Consolvo commited on
Commit
f6e3b3b
·
1 Parent(s): c273289

readme update

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. app.py +8 -0
  3. intelpreventativehealthcare.py +2 -1
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🔥
4
  colorFrom: yellow
5
  colorTo: purple
6
  sdk: streamlit
7
- sdk_version: 1.42.2
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
 
4
  colorFrom: yellow
5
  colorTo: purple
6
  sdk: streamlit
7
+ sdk_version: 1.45.1
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
app.py CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
  import pandas as pd
3
  import asyncio
 
1
+ # Some of the code in this file was generated using AI with GitHub CoPilot, and modified by the author.
2
+ # The code is a simulation of a healthcare system that uses AI agents to manage patient outreach
3
+ # Author: Benjamin Consolvo
4
+ # Originally created in 2025
5
+ # Heavily modified from original code by Mick Lynch:
6
+ # https://medium.com/@micklynch_6905/hospitalgpt-managing-a-patient-population-with-autogen-powered-by-gpt-4-mixtral-8x7b-ef9f54f275f1
7
+ # https://github.com/micklynch/hospitalgpt
8
+
9
  import streamlit as st
10
  import pandas as pd
11
  import asyncio
intelpreventativehealthcare.py CHANGED
@@ -1,7 +1,8 @@
 
1
  # The code is a simulation of a healthcare system that uses AI agents to manage patient outreach
2
  # Author: Benjamin Consolvo
3
  # Originally created in 2025
4
- # Original code and idea from Mike Lynch on Medium here. Heavily modified.
5
  # https://medium.com/@micklynch_6905/hospitalgpt-managing-a-patient-population-with-autogen-powered-by-gpt-4-mixtral-8x7b-ef9f54f275f1
6
  # https://github.com/micklynch/hospitalgpt
7
 
 
1
+ # Some of the code in this file was generated using AI with GitHub CoPilot, and modified by the author.
2
  # The code is a simulation of a healthcare system that uses AI agents to manage patient outreach
3
  # Author: Benjamin Consolvo
4
  # Originally created in 2025
5
+ # Heavily modified from original code by Mick Lynch:
6
  # https://medium.com/@micklynch_6905/hospitalgpt-managing-a-patient-population-with-autogen-powered-by-gpt-4-mixtral-8x7b-ef9f54f275f1
7
  # https://github.com/micklynch/hospitalgpt
8