Commit
·
b591359
1
Parent(s):
05bad45
updated
Browse files
README.md
CHANGED
@@ -27,6 +27,24 @@ The primary goal of this project is to illustrate how an agent-driven workflow c
|
|
27 |
- Create more personalized and context-aware AI interactions
|
28 |
- Demonstrate practical implementation of agentic workflows in LLM systems
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
## Screenshots
|
31 |
|
32 |
### Step 1: AI agent asks you questions according to your preferred area of focus
|
|
|
27 |
- Create more personalized and context-aware AI interactions
|
28 |
- Demonstrate practical implementation of agentic workflows in LLM systems
|
29 |
|
30 |
+
## Sidebar Workflow
|
31 |
+
|
32 |
+
```
|
33 |
+
Enter OpenAI API Key
|
34 |
+
↓
|
35 |
+
Choose Focus Area
|
36 |
+
↓
|
37 |
+
Start Interview
|
38 |
+
↓
|
39 |
+
Answer Questions
|
40 |
+
↓
|
41 |
+
End Interview
|
42 |
+
↓
|
43 |
+
Generate Context
|
44 |
+
↓
|
45 |
+
Export Data (Copy/Download)
|
46 |
+
```
|
47 |
+
|
48 |
## Screenshots
|
49 |
|
50 |
### Step 1: AI agent asks you questions according to your preferred area of focus
|
app.py
CHANGED
@@ -256,11 +256,11 @@ with tab2:
|
|
256 |
with tab3:
|
257 |
st.header("Feature Gallery")
|
258 |
st.markdown("### Interactive Interview Process")
|
259 |
-
st.image("screenshots/1.png",
|
260 |
st.markdown("### Context Focus Selection")
|
261 |
-
st.image("screenshots/2.png",
|
262 |
st.markdown("### Generated Context Summary")
|
263 |
-
st.image("screenshots/3.png",
|
264 |
|
265 |
with tab4:
|
266 |
if st.session_state.interview_complete and st.session_state.context_data:
|
|
|
256 |
with tab3:
|
257 |
st.header("Feature Gallery")
|
258 |
st.markdown("### Interactive Interview Process")
|
259 |
+
st.image("screenshots/1.png", use_container_width=True)
|
260 |
st.markdown("### Context Focus Selection")
|
261 |
+
st.image("screenshots/2.png", use_container_width=True)
|
262 |
st.markdown("### Generated Context Summary")
|
263 |
+
st.image("screenshots/3.png", use_container_width=True)
|
264 |
|
265 |
with tab4:
|
266 |
if st.session_state.interview_complete and st.session_state.context_data:
|