Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from git import Repo
|
2 |
+
import streamlit as st
|
3 |
+
|
4 |
+
Repo.clone_from(st.secrets['GIT_URL'],'./educrpg')
|
5 |
+
|
6 |
+
import educrpg
|
7 |
+
|
8 |
+
educrpg.gaide(st.secrets['OPENAI_API_KEY'], st.secrets['QDRANT_API_KEY'], st.secrets['QDRANT_URL'], st.secrets['QDRANT_COLLECTION'])
|