|
|
|
|
|
import streamlit as st |
|
|
|
def app_config(): |
|
|
|
|
|
st.markdown("Change the agents configuration here.") |
|
|
|
|
|
url_endpoint = st.selectbox("Select Inference URL", [ |
|
"https://api-inference.huggingface.co/models/bigcode/starcoder", |
|
"https://api-inference.huggingface.co/models/OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5", |
|
"https://api-inference.huggingface.co/models/gpt2" |
|
]) |
|
|
|
|
|
log_enabled = st.checkbox("Enable Logging") |
|
|
|
tool_checkboxes = [st.checkbox(f"{tool.name} --- {tool.description} ") for tool in tool_loader.tools] |