Spaces:
Sleeping
Sleeping
File size: 374 Bytes
250b749 9c9f4d0 250b749 6dc181d 9c9f4d0 dde04a9 250b749 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
import cohere
st.title("My First Cohere Chat App on HF Space")
co = cohere.Client("3xjTiuBZlBOnNWZPTAsAVZzUeA9l6Z2i0MZtQlZW")
user_question = st.text_input("Ask me anything!")
if user_question: # Check if user entered a question
response = co.generate(
prompt=user_question,
)
st.write(response) # Display Cohere's response
|