Skip to content

Commit 249ccf2

Browse files
committed
minor changes
1 parent 9d67968 commit 249ccf2

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# Prophetic Strategies
22

33
A simple RAG app using Lacan's Seminar Book 5. Access here.
4+
5+
## TODO
6+
7+
- add random response. add strategy pattern. refactor
8+
- add feedback (if clicked od not reload page)
9+
- https://discuss.streamlit.io/t/how-to-capture-the-feedback-effectively/60138
10+
- https://blog.streamlit.io/how-in-app-feedback-can-increase-your-chatbots-performance/

src/prophetic-strategies/streamlit_app.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import streamlit as st
22
from pathlib import Path
3-
from utils.utils import fake_stream
4-
from utils.semantic_search import search
3+
from utils import fake_stream
4+
from semantic_search import search
55

66
STRATEGIES = {
77
"Oracle": Path("db/book5.db"),
@@ -36,3 +36,5 @@
3636
f'<div style="text-align: right;">Sentence {result["sentence"]}</div>',
3737
unsafe_allow_html=True,
3838
)
39+
40+
# st.feedback()
File renamed without changes.

src/prophetic-strategies/utils/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)