Spaces:
Running
Running
File size: 5,651 Bytes
e760d91 c725f07 1c296f6 e760d91 92001e7 e760d91 92001e7 e760d91 9d8abce e760d91 92001e7 e760d91 92001e7 e2e70fb 92001e7 e760d91 e2e70fb e760d91 c725f07 92001e7 c725f07 e760d91 c725f07 e760d91 c725f07 e760d91 92001e7 e760d91 81240ab 92001e7 c725f07 92001e7 c725f07 92001e7 c725f07 92001e7 c725f07 92001e7 e2e70fb c725f07 92001e7 c725f07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
import streamlit as st
import os
import time
import re
import json
import requests
from PIL import Image
from openai import OpenAI
# ------------------ App Configuration ------------------
st.set_page_config(page_title="Document AI Assistant", layout="wide")
st.title("π Document AI Assistant")
st.caption("Chat with an AI Assistant on your medical/pathology documents")
# ------------------ Load API Key and Assistant ID from Hugging Face Secrets ------------------
OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY")
ASSISTANT_ID = os.environ.get("ASSISTANT_ID")
if not OPENAI_API_KEY or not ASSISTANT_ID:
st.error("Missing secrets. Please ensure both OPENAI_API_KEY and ASSISTANT_ID are set in your Hugging Face Space secrets.")
st.stop()
client = OpenAI(api_key=OPENAI_API_KEY)
# ------------------ Session State Initialization ------------------
if "messages" not in st.session_state:
st.session_state.messages = []
if "thread_id" not in st.session_state:
st.session_state.thread_id = None
if "image_url" not in st.session_state:
st.session_state.image_url = None
if "image_updated" not in st.session_state:
st.session_state.image_updated = False
# ------------------ Sidebar Controls ------------------
st.sidebar.header("π§ Settings")
if st.sidebar.button("π Clear Chat"):
st.session_state.messages = []
st.session_state.thread_id = None
st.session_state.image_url = None
st.session_state.image_updated = False
st.rerun()
show_image = st.sidebar.checkbox("π Show Document Image", value=True)
# ------------------ Load Structured Summary/FAQ ------------------
with open("51940670-Manual-of-Surgical-Pathology-Third-Edition_1_structured_output.json", "r") as f:
structured_data = json.load(f)
# ------------------ Three-Column Layout ------------------
left, center, right = st.columns([1, 2, 1]) # adjust as needed
# ------------------ Left Column: Document Image ------------------
with left:
st.subheader("π Document Image")
if show_image and st.session_state.image_url:
try:
image = Image.open(requests.get(st.session_state.image_url, stream=True).raw)
st.image(image, caption="π Extracted Page", use_column_width=True)
st.session_state.image_updated = False
except Exception as e:
st.warning("β οΈ Could not load image.")
# ------------------ Center Column: Chat UI ------------------
with center:
st.subheader("π¬ Document AI Assistant")
for message in st.session_state.messages:
role, content = message["role"], message["content"]
st.chat_message(role).write(content)
if prompt := st.chat_input("Type your question about the document..."):
st.session_state.messages.append({"role": "user", "content": prompt})
st.chat_message("user").write(prompt)
try:
if st.session_state.thread_id is None:
thread = client.beta.threads.create()
st.session_state.thread_id = thread.id
thread_id = st.session_state.thread_id
# Send user prompt
client.beta.threads.messages.create(
thread_id=thread_id,
role="user",
content=prompt
)
# Run assistant
run = client.beta.threads.runs.create(
thread_id=thread_id,
assistant_id=ASSISTANT_ID
)
# Poll until done
with st.spinner("Assistant is thinking..."):
while True:
run_status = client.beta.threads.runs.retrieve(
thread_id=thread_id,
run_id=run.id
)
if run_status.status == "completed":
break
time.sleep(1)
# Get assistant message
messages = client.beta.threads.messages.list(thread_id=thread_id)
assistant_message = None
for message in reversed(messages.data):
if message.role == "assistant":
assistant_message = message.content[0].text.value
break
st.chat_message("assistant").write(assistant_message)
st.session_state.messages.append({"role": "assistant", "content": assistant_message})
# Detect GitHub image in response
image_match = re.search(
r'https://raw\.githubusercontent\.com/AndrewLORTech/surgical-pathology-manual/main/[\w\-/]*\.png',
assistant_message
)
if image_match:
st.session_state.image_url = image_match.group(0)
st.session_state.image_updated = True
st.rerun()
except Exception as e:
st.error(f"β Error: {str(e)}")
# ------------------ Right Column: Summary and FAQ ------------------
with right:
st.subheader("π Summary")
if st.session_state.image_url:
match = re.search(r'page_(\d+)', st.session_state.image_url)
page_number = int(match.group(1)) if match else None
else:
page_number = 151 # default
summary_text = structured_data.get(str(page_number), {}).get("summary", "No summary available.")
st.markdown(summary_text)
st.subheader("β Auto-Generated FAQ")
faq_list = structured_data.get(str(page_number), {}).get("faqs", [])
if faq_list:
for faq in faq_list:
st.markdown(f"**Q:** {faq.get('question', '')}\n\n**A:** {faq.get('answer', '')}")
else:
st.info("No FAQs available for this page.")
|