Spaces:
Runtime error
Runtime error
HemanthSai7
commited on
Commit
•
b22dbe5
1
Parent(s):
aad7aea
frontend with chatbot completion
Browse files
frontend/components/__init__.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
from .authors import *
|
2 |
from .user_greetings import *
|
3 |
from .logo import add_logo
|
4 |
-
|
5 |
from .display import *
|
|
|
1 |
from .authors import *
|
2 |
from .user_greetings import *
|
3 |
from .logo import add_logo
|
4 |
+
from .file_streaming import *
|
5 |
from .display import *
|
frontend/pages/2_🤖_bot.py
CHANGED
@@ -2,8 +2,9 @@ import requests
|
|
2 |
|
3 |
import streamlit as st
|
4 |
|
5 |
-
from layouts.mainlayout import mainlayout
|
6 |
from components.display import *
|
|
|
|
|
7 |
|
8 |
|
9 |
@mainlayout
|
|
|
2 |
|
3 |
import streamlit as st
|
4 |
|
|
|
5 |
from components.display import *
|
6 |
+
from layouts.mainlayout import mainlayout
|
7 |
+
from components.file_streaming import upload_data
|
8 |
|
9 |
|
10 |
@mainlayout
|
frontend/requirements.txt
CHANGED
@@ -1 +1,2 @@
|
|
1 |
streamlit
|
|
|
|
1 |
streamlit
|
2 |
+
langchain
|