Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Vido
Vido / chat.html
Created October 30, 2024 18:38
RAG (Retrieval Augmented Generation) proof-of-concept based on LangChain and OpenAI's chatGPT. https://youtu.be/muFyRwfqVA0
<!doctype html>
<title>🐍📈 Python e Finanças - Retrieval Augmented Generation 🦜️🔗</title>
<body>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}