dodeeric / langchain-ai-assistant-with-hybrid-rag

This is a LLM chatbot coded with LangChain. The web interface is coded with Streamlit. It implements a hybrid RAG (keyword and semantic search) and chat memory.
https://bmae-ragai-webapp.azurewebsites.net
GNU General Public License v3.0
8 stars 1 forks source link

in admin interface, list all the web page urls (from the json files) #86

Closed dodeeric closed 1 week ago

dodeeric commented 1 week ago

jq '.[].url' *.json

dodeeric commented 1 week ago

e.g. of use of "subprocess.run":

        command = ['rm', '-Rf', './pdf_files/']
        result = subprocess.run(command, capture_output=True, text=True, timeout=30)
        st.write(result.stdout)
        st.write(result.stderr)
dodeeric commented 1 week ago

done with python json