Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- app.py +2 -1
- requirements.txt +2 -1
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import requests
|
2 |
import json
|
3 |
-
|
|
|
4 |
def getAnsBytiger(t):
|
5 |
API_KEY="4d95a8e9615d73939d5f0b8997bc4614eaf96f854a5ab503f5d781e1c5521c73"
|
6 |
url = "https://api.tigerbot.com/v1/chat/completions"
|
|
|
1 |
import requests
|
2 |
import json
|
3 |
+
import streamlit as st
|
4 |
+
from streamlit_chat import message
|
5 |
def getAnsBytiger(t):
|
6 |
API_KEY="4d95a8e9615d73939d5f0b8997bc4614eaf96f854a5ab503f5d781e1c5521c73"
|
7 |
url = "https://api.tigerbot.com/v1/chat/completions"
|
requirements.txt
CHANGED
@@ -1 +1,2 @@
|
|
1 |
-
requests
|
|
|
|
1 |
+
requests
|
2 |
+
streamlit_chat
|