Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import pandas as pd
|
2 |
import bm25s
|
3 |
from bm25s.hf import BM25HF
|
@@ -6,7 +7,7 @@ from langchain.docstore.document import Document
|
|
6 |
import torch
|
7 |
from langchain_ollama.llms import OllamaLLM
|
8 |
from langchain.chains import LLMChain
|
9 |
-
|
10 |
|
11 |
@st.cache_data
|
12 |
def load_data():
|
|
|
1 |
+
import streamlit as st
|
2 |
import pandas as pd
|
3 |
import bm25s
|
4 |
from bm25s.hf import BM25HF
|
|
|
7 |
import torch
|
8 |
from langchain_ollama.llms import OllamaLLM
|
9 |
from langchain.chains import LLMChain
|
10 |
+
|
11 |
|
12 |
@st.cache_data
|
13 |
def load_data():
|