Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
from streamlit_chat import message
|
3 |
import requests
|
4 |
|
5 |
-
url = 'https://
|
6 |
st.set_page_config(page_title="WebraftAI Chat", page_icon=":robot_face:")
|
7 |
st.markdown("<h1 style='text-align: center;'>WebraftAI Chat</h1>", unsafe_allow_html=True)
|
8 |
|
@@ -23,8 +23,8 @@ if 'api_key' not in st.session_state:
|
|
23 |
st.session_state['api_key']=""
|
24 |
|
25 |
st.sidebar.title("Settings")
|
26 |
-
model_name = st.sidebar.selectbox("Chat Model:", ("gpt-3.5-turbo","gpt-3.5-turbo-16k","gpt-4","gpt-4-32k","
|
27 |
-
image_model = st.sidebar.selectbox("Image Model:", ("realistic-vision-v1-4","stable-diffusion-v1-4","stable-diffusion-v2-1","kandinsky-2.2","sdxl"))
|
28 |
counter_placeholder = st.sidebar.empty()
|
29 |
|
30 |
api_key = st.sidebar.text_input("API_Key", value=st.session_state['api_key'], max_chars=None,placeholder=st.session_state['api_key'], key=None, type="password", label_visibility="visible")
|
|
|
2 |
from streamlit_chat import message
|
3 |
import requests
|
4 |
|
5 |
+
url = 'https://api.webraft.in/v1/chat/completions'
|
6 |
st.set_page_config(page_title="WebraftAI Chat", page_icon=":robot_face:")
|
7 |
st.markdown("<h1 style='text-align: center;'>WebraftAI Chat</h1>", unsafe_allow_html=True)
|
8 |
|
|
|
23 |
st.session_state['api_key']=""
|
24 |
|
25 |
st.sidebar.title("Settings")
|
26 |
+
model_name = st.sidebar.selectbox("Chat Model:", ("gpt-3.5-turbo","gpt-3.5-turbo-16k","gpt-3.5-turbo-1106","gpt-4","gpt-4-32k","gpt-4-1106-preview","claude-1","claude-2","palm-2","falcon-180b-chat","codellama-7b","llama2-7b","llama2-70b","openassistant-llama-30b","mini-orca-v3-13b"))
|
27 |
+
image_model = st.sidebar.selectbox("Image Model:", ("dalle-3","realistic-vision-v5-1","realistic-vision-v1-4","stable-diffusion-v1-4","stable-diffusion-v2-1","kandinsky-2.2","sdxl"))
|
28 |
counter_placeholder = st.sidebar.empty()
|
29 |
|
30 |
api_key = st.sidebar.text_input("API_Key", value=st.session_state['api_key'], max_chars=None,placeholder=st.session_state['api_key'], key=None, type="password", label_visibility="visible")
|