Spaces:
Sleeping
Sleeping
import pandas as pd | |
df = pd.read_csv('./drugs_side_effects_drugs_com.csv') | |
df = df[['drug_name', 'medical_condition', 'side_effects']] | |
df.dropna(inplace=True) | |
context_data = [] | |
for i in range(2): | |
context = " | ".join([f"{col}: {df.iloc[i][col]}" for col in df.columns]) | |
context_data.append(context) | |
import os | |
# Get the secret key from the environment | |
groq_key = os.environ.get('gloq_key') | |
## LLM used for RAG | |
from langchain_groq import ChatGroq | |
llm = ChatGroq(model="llama-3.1-70b-versatile",api_key=groq_key) | |
## Embedding model! | |
from langchain_huggingface import HuggingFaceEmbeddings | |
embed_model = HuggingFaceEmbeddings(model_name="mixedbread-ai/mxbai-embed-large-v1") | |
# create vector store! | |
from langchain_chroma import Chroma | |
vectorstore = Chroma( | |
collection_name="medical_dataset_store", | |
embedding_function=embed_model, | |
persist_directory="./", | |
) | |
# add data to vector nstore | |
vectorstore.add_texts(context_data) | |
retriever = vectorstore.as_retriever() | |
from langchain_core.prompts import PromptTemplate | |
template = (""" | |
You are CareBot, a pharmacist and medical expert known as Treasure. Your goal is to provide empathetic, supportive, and detailed responses tailored to the user's needs. | |
Use the provided context to answer the question. If the question is related to medical condition, drug name and side effects that are not in the context, look online and answer them. | |
Behavior Guidelines: | |
1. Introduction: Greet the user as Treasure during the first interaction. | |
2. Personalization: Adapt responses to the user's tone and emotional state. | |
3. Empathy: Respond warmly to the user's concerns and questions. | |
4. Evidence-Based: Use reliable sources to answer queries. For missing data, advise seeking professional consultation. | |
5. Focus: Avoid providing off-topic information; address the user's query specifically. | |
6. Encouragement: Balance acknowledging concerns with actionable and constructive suggestions. | |
7. Context Integration: Use the given context to deliver accurate and relevant answers without repeating the context explicitly. | |
Objective: | |
Deliver thoughtful, empathetic, and medically sound advice based on the user’s query. | |
Response Style: | |
- Detailed but concise | |
- Professional, empathetic tone | |
- Clear and actionable guidance | |
Context: {context} | |
Question: {question} | |
Answer:""") | |
rag_prompt = PromptTemplate.from_template(template) | |
from langchain_core.output_parsers import StrOutputParser | |
from langchain_core.runnables import RunnablePassthrough | |
rag_chain = ( | |
{"context": retriever, "question": RunnablePassthrough()} | |
| rag_prompt | |
| llm | |
| StrOutputParser() | |
) | |
import gradio as gr | |
# Function to stream responses | |
def rag_memory_stream(message, history): | |
partial_text = "" | |
for new_text in rag_chain.stream(message): # Assuming rag_chain is pre-defined | |
partial_text += new_text | |
yield partial_text | |
examples = [ | |
"What are the side effects of aspirin?", | |
"Can ibuprofen cause dizziness?" | |
] | |
# Title and description for the app | |
title = "CareBot: AI Medical Assistant for Drug Information and Side Effects" | |
description = """ | |
This AI-powered chatbot provides reliable information about drugs, their side effects, and related medical conditions. | |
Powered by the Groq API and LangChain, it delivers real-time, accurate responses. | |
Example Questions: | |
- What are the side effects of aspirin? | |
- Can ibuprofen cause dizziness? | |
Disclaimer: This chatbot is for informational purposes only and not a substitute for professional medical advice. | |
""" | |
# Customizing Gradio interface for a better look | |
# demo = gr.Interface( | |
# fn=rag_memory_stream, | |
# inputs=gr.Textbox( | |
# lines=5, | |
# placeholder="Type your medical question here...", | |
# label="Your Medical Question" | |
# ), | |
# outputs=gr.Textbox( | |
# lines=15, # Reduced line count for better layout | |
# label="AI Response" | |
# ), | |
# title=title, | |
# description=description, | |
# allow_flagging="never" | |
# ) | |
demo = gr.ChatInterface(fn=rag_memory_stream, | |
type="messages", | |
title=title, | |
description=description, | |
fill_height=True, | |
examples=examples, | |
theme="glass", | |
) | |
if __name__ == "__main__": | |
demo.launch() |