Bessel / app.py
avivdm1's picture
Update app.py
274836f
raw
history blame contribute delete
315 Bytes
import streamlit as st
# string = st.text_area('HI')
from huggingface_hub.inference_api import InferenceApi
API_TOKEN = "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"
inference = InferenceApi(repo_id="avivdm1/Bessel", token=API_TOKEN)
st.json({'double': inference})
output = inference(inputs="Your input data here")