File size: 381 Bytes
d2ef3e4
 
e0e11c1
 
7020122
 
 
d2ef3e4
 
 
 
 
e0e11c1
7020122
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from huggingface_hub import hf_hub_download
from FinancialAgentApp import HFFinancialRAG, OpenAIFinancialRAG
import streamlit as st



if __name__ == "__main__":
    index_path = hf_hub_download(
    repo_id="mrfirdauss/FaissBhatlaBook",  
    filename="vs_68bf713eea2c81919ac08298a05d6704/index.faiss",
    repo_type="dataset"
    )
    app = OpenAIFinancialRAG(st)
    app.run()