File size: 315 Bytes
17d8532
 
a13e6ac
17d8532
8ee0cfb
 
 
 
17d8532
71cd642
17d8532
71cd642
1
2
3
4
5
6
7
8
9
10
11
12
from git import Repo
import streamlit as st
import os

if os.path.exists('./educrpg'):
    pass
else:
    Repo.clone_from(st.secrets['GIT_URL'],'./educrpg')

from educrpg.gaide import gaide

gaide(st.secrets['OPENAI_API_KEY'], st.secrets['QDRANT_API_KEY'], st.secrets['QDRANT_URL'], st.secrets['QDRANT_COLLECTION'])