DrishtiSharma commited on
Commit
6b40794
·
verified ·
1 Parent(s): 0770d1b

Create layout1.py

Browse files
Files changed (1) hide show
  1. lab/layout1.py +272 -0
lab/layout1.py ADDED
@@ -0,0 +1,272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from graph import EssayWriter, RouteQuery, GraphState
3
+ from crew import *
4
+ import os
5
+ import traceback
6
+ import base64
7
+
8
+ # Install Graphviz if not found
9
+ if os.system("which dot") != 0:
10
+ os.system("apt-get update && apt-get install -y graphviz")
11
+
12
+ st.markdown(
13
+ """
14
+ <h1 style="text-align: center; white-space: nowrap; font-size: 2.5em;">
15
+ Multi-Agent Essay Writing Assistant
16
+ </h1>
17
+ """,
18
+ unsafe_allow_html=True
19
+ )
20
+
21
+ # Ensure session state variables are initialized properly
22
+ if "messages" not in st.session_state:
23
+ st.session_state["messages"] = [{"role": "assistant", "content": "Hello! How can I assist you today?"}]
24
+
25
+ if "app" not in st.session_state:
26
+ st.session_state["app"] = None
27
+
28
+ if "chat_active" not in st.session_state:
29
+ st.session_state["chat_active"] = True
30
+
31
+ # Sidebar with essay settings and user-defined length
32
+ with st.sidebar:
33
+ st.subheader("About:")
34
+ st.info(
35
+ "\n\n 1. This app uses the 'gpt-4o-mini-2024-07-18' model."
36
+ "\n\n 2. Writing essays may take some time, approximately 1-2 minutes."
37
+ )
38
+
39
+ # API Key Retrieval
40
+ openai_key = st.secrets.get("OPENAI_API_KEY", "")
41
+
42
+ st.divider()
43
+
44
+ # User-defined essay length selection
45
+ st.subheader("📝 Configure Essay Settings:")
46
+ essay_length = st.number_input(
47
+ "Select Essay Length (words):",
48
+ min_value=150,
49
+ max_value=500,
50
+ value=250,
51
+ step=50
52
+ )
53
+
54
+ st.divider()
55
+
56
+ # Reference section
57
+ st.subheader("📖 References:")
58
+ st.markdown(
59
+ "[1. Multi-Agent System with CrewAI and LangChain](https://discuss.streamlit.io/t/new-project-i-have-build-a-multi-agent-system-with-crewai-and-langchain/84002)",
60
+ unsafe_allow_html=True
61
+ )
62
+
63
+ # Initialize agents function
64
+ def initialize_agents():
65
+ if not openai_key:
66
+ st.error("⚠️ OpenAI API key is missing! Please provide a valid key through Hugging Face Secrets.")
67
+ st.session_state["chat_active"] = True
68
+ return None
69
+
70
+ os.environ["OPENAI_API_KEY"] = openai_key
71
+ try:
72
+ # Prevent re-initialization
73
+ if "app" in st.session_state and st.session_state["app"] is not None:
74
+ return st.session_state["app"]
75
+
76
+ # Initialize the full EssayWriter instance
77
+ essay_writer = EssayWriter() # Store the full instance
78
+ st.session_state["app"] = essay_writer # Now contains `graph`
79
+ st.session_state["chat_active"] = False # Enable chat after successful initialization
80
+
81
+ return essay_writer
82
+ except Exception as e:
83
+ st.error(f"❌ Error initializing agents: {e}")
84
+ st.session_state["chat_active"] = True
85
+ return None
86
+
87
+
88
+ # Automatically initialize agents on app load
89
+ if st.session_state["app"] is None:
90
+ st.session_state["app"] = initialize_agents()
91
+
92
+ if st.session_state["app"] is None:
93
+ st.error("⚠️ Failed to initialize agents. Please check your API key and restart the app.")
94
+
95
+ app = st.session_state["app"]
96
+
97
+ # Function to invoke the agent and generate a response
98
+ def generate_response(topic, length):
99
+ if not app or not hasattr(app, "graph"):
100
+ st.error("⚠️ Agents are not initialized. Please check the system or restart the app.")
101
+ return {"response": "Error: Agents not initialized."}
102
+
103
+ # Refined prompt for better essay generation
104
+ refined_prompt = f"""
105
+ Write a well-structured, engaging, and informative essay on "{topic}". The essay should be approximately {length} words and follow this structured format:
106
+ ## 1. Title
107
+ - Generate a compelling, creative, and relevant title that encapsulates the theme of the essay.
108
+ ## 2. Introduction (100-150 words)
109
+ - Clearly define the topic and its importance in the broader context.
110
+ - Provide a strong **thesis statement** that outlines the essay’s key argument.
111
+ - Briefly mention the **key themes** that will be explored in the body.
112
+ - Engage the reader with a thought-provoking fact, quote, or question.
113
+ ## 3. Main Body (Ensure clear organization and logical transitions)
114
+ Each section should:
115
+ - **Have a distinct, engaging subheading**.
116
+ - **Begin with a topic sentence** introducing the section’s main idea.
117
+ - **Include real-world examples, historical references, or statistical data**.
118
+ - **Maintain smooth transitions** between sections for cohesive reading.
119
+ ### Suggested Sections (Modify as Needed)
120
+ - **Historical Context**: Trace the origins and evolution of the topic over time.
121
+ - **Key Aspects**: Break down essential components (e.g., cultural, political, economic influences).
122
+ - **Modern Challenges & Debates**: Discuss **contemporary issues** and **conflicting viewpoints**.
123
+ - **Impact & Future Trends**: Examine how the topic influences the present and future.
124
+ ## 4. Conclusion (100-150 words)
125
+ - Concisely summarize key insights and arguments.
126
+ - Reinforce the essay’s thesis in light of the discussion.
127
+ - End with a **thought-provoking final statement**, such as:
128
+ - A **rhetorical question**.
129
+ - A **call to action**.
130
+ - A **broader reflection** on the topic’s long-term significance.
131
+ ## 5. Writing & Formatting Guidelines
132
+ - Maintain **formal, engaging, and precise** language.
133
+ - Ensure **clear paragraph structure and logical progression**.
134
+ - Avoid redundancy; keep insights sharp and impactful.
135
+ - Use **examples, expert opinions, or historical events** to strengthen arguments.
136
+ - Provide **citations or references** when possible.
137
+ """
138
+
139
+ response = app.graph.invoke(input={"topic": topic, "length": length, "prompt": refined_prompt})
140
+
141
+ return response
142
+
143
+
144
+
145
+ # Define Tabs
146
+ tab1, tab2 = st.tabs(["📜 Essay Generation", "📊 Workflow Viz"])
147
+
148
+ # 📜 Tab 1: Essay Generation
149
+ with tab1:
150
+ # Display chat messages from the session
151
+ if "messages" not in st.session_state:
152
+ st.session_state["messages"] = [{"role": "assistant", "content": "Hello! How can I assist you today?"}]
153
+
154
+ for message in st.session_state["messages"]:
155
+ with st.chat_message(message["role"]):
156
+ st.markdown(message["content"], unsafe_allow_html=True)
157
+
158
+ # Handle user input
159
+ if topic := st.chat_input(placeholder="📝 Ask a question or provide an essay topic...", disabled=st.session_state["chat_active"]):
160
+ st.chat_message("user").markdown(topic)
161
+ st.session_state["messages"].append({"role": "user", "content": topic})
162
+
163
+ with st.spinner("⏳ Generating your essay..."):
164
+ response = None
165
+ if app:
166
+ response = app.write_essay({"topic": topic})
167
+ else:
168
+ st.error("⚠️ Agents are not initialized. Please check the system or restart the app.")
169
+
170
+ # Handle the assistant's response
171
+ with st.chat_message("assistant"):
172
+ if response and "essay" in response: # Display essay preview and allow editing
173
+ essay = response["essay"]
174
+ st.markdown(f"### 📝 Essay Preview ({essay_length} words)")
175
+ st.markdown(f"#### {essay['header']}")
176
+ st.markdown(essay["entry"])
177
+
178
+ for para in essay["paragraphs"]:
179
+ st.markdown(f"**{para['sub_header']}**")
180
+ st.markdown(para["paragraph"])
181
+
182
+ st.markdown("**🖊️ Conclusion:**")
183
+ st.markdown(essay["conclusion"])
184
+
185
+ # Editable Section
186
+ st.markdown("## ✍️ Edit Your Essay Below:")
187
+
188
+ # Combine all parts of the essay into one editable text field
189
+ full_essay_text = f"## {essay['header']}\n\n{essay['entry']}\n\n"
190
+ for para in essay["paragraphs"]:
191
+ full_essay_text += f"### {para['sub_header']}\n{para['paragraph']}\n\n"
192
+ full_essay_text += f"**Conclusion:**\n{essay['conclusion']}"
193
+
194
+ # Editable text area for the user
195
+ edited_essay = st.text_area("Edit Your Essay:", value=full_essay_text, height=400)
196
+
197
+ # Save and Download buttons
198
+ col1, col2 = st.columns(2)
199
+
200
+ with col1:
201
+ if st.button("💾 Save as TXT"):
202
+ with open("edited_essay.txt", "w", encoding="utf-8") as file:
203
+ file.write(edited_essay)
204
+ with open("edited_essay.txt", "rb") as file:
205
+ st.download_button(label="⬇️ Download TXT", data=file, file_name="edited_essay.txt", mime="text/plain")
206
+
207
+ with col2:
208
+ if st.button("📄 Save as PDF"):
209
+ from fpdf import FPDF
210
+
211
+ pdf = FPDF()
212
+ pdf.set_auto_page_break(auto=True, margin=15)
213
+ pdf.add_page()
214
+ pdf.set_font("Arial", size=12)
215
+
216
+ for line in edited_essay.split("\n"):
217
+ pdf.cell(200, 10, txt=line, ln=True, align='L')
218
+
219
+ pdf.output("edited_essay.pdf")
220
+
221
+ with open("edited_essay.pdf", "rb") as file:
222
+ st.download_button(label="⬇️ Download PDF", data=file, file_name="edited_essay.pdf", mime="application/pdf")
223
+
224
+ # Provide download link for the original PDF (only if available)
225
+ pdf_name = response.get("pdf_name")
226
+ if pdf_name and os.path.exists(pdf_name):
227
+ with open(pdf_name, "rb") as pdf_file:
228
+ b64 = base64.b64encode(pdf_file.read()).decode()
229
+ href = f"<a href='data:application/octet-stream;base64,{b64}' download='{pdf_name}'>📄 Click here to download the original PDF</a>"
230
+ st.markdown(href, unsafe_allow_html=True)
231
+
232
+ # Save response in session state
233
+ st.session_state["messages"].append(
234
+ {"role": "assistant", "content": f"Here is your {essay_length}-word essay preview and the download link."}
235
+ )
236
+ elif response: # Other responses (fallback)
237
+ st.markdown(response["response"])
238
+ st.session_state["messages"].append({"role": "assistant", "content": response["response"]})
239
+ else:
240
+ st.error("⚠️ No response received. Please try again.")
241
+
242
+
243
+
244
+ # 📊 Tab 2: Workflow Visualization
245
+ with tab2:
246
+ #st.subheader("📊 Multi-Agent Essay Writer Workflow Viz")
247
+
248
+ try:
249
+ graph_path = "/tmp/graph.png"
250
+ if os.path.exists(graph_path):
251
+ st.image(graph_path, caption="Multi-Agent Essay Writer Workflow Visualization", use_container_width=True)
252
+ else:
253
+ st.warning("⚠️ Workflow graph not found. Please run `graph.py` to regenerate `graph.png`.")
254
+
255
+ except Exception as e:
256
+ st.error("❌ An error occurred while generating the workflow visualization.")
257
+ st.text_area("Error Details:", traceback.format_exc(), height=200)
258
+
259
+
260
+ # Acknowledgement Section
261
+ st.markdown(
262
+ """
263
+ <div style="text-align: center; font-size: 14px; color: #555; padding-top: 200px; margin-top: 200px;">
264
+ <strong>Acknowledgement:</strong> This app is based on Mesut Duman's work:
265
+ <a href="https://github.com/mesutdmn/Autonomous-Multi-Agent-Systems-with-CrewAI-Essay-Writer/tree/main"
266
+ target="_blank" style="color: #007BFF; text-decoration: none;">
267
+ CrewAI Essay Writer
268
+ </a>
269
+ </div>
270
+ """,
271
+ unsafe_allow_html=True,
272
+ )