playground-template / 0_🏠_Home.py
adamelliotfields's picture
Add Anthropic API
8407ae2 verified
raw
history blame
2.19 kB
import streamlit as st
from lib import config
st.set_page_config(
page_title=config.title,
page_icon=config.logo,
layout=config.layout,
)
# sidebar
st.logo(config.logo)
# title
st.html("""
<style>
.pro-badge {
display: inline-block;
transform: skew(-12deg);
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 700;
padding: 0.125rem 0.625rem;
border-radius: 0.5rem;
color: rgb(0 0 0 / 1);
box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(16 185 129 / .1), 0 4px 6px -4px rgb(16 185 129 / .1);
background-image: linear-gradient(to bottom right, #f9a8d4, #a7f3d0, #fde68a);
border: 1px solid rgb(229 231 235 / 1);
}
@media (prefers-color-scheme: dark) {
.pro-badge {
box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(16 185 129 / .2), 0 4px 6px -4px rgb(16 185 129 / .2);
background-image: linear-gradient(to bottom right, #ec4899, #10b981, #f59e0b);
border: 1px solid rgb(20 28 46 / 1);
}
}
</style>
<div style="display: flex; align-items: center; gap: 0.75rem">
<h1>API Inference</h1>
<span class="pro-badge">PRO</span>
</div>
<p>Explore popular AI endpoints in one place.</p>
""")
st.markdown("## Tasks")
st.page_link("pages/1_πŸ’¬_Text_Generation.py", label="Text Generation", icon="πŸ’¬")
st.page_link("pages/2_🎨_Text_to_Image.py", label="Text to Image", icon="🎨")
st.markdown("""
## Services
- [Anthropic](https://docs.anthropic.com/en/api/getting-started)
- [Black Forest Labs](https://docs.bfl.ml)
- [fal.ai](https://fal.ai/docs)
- [Hugging Face](https://huggingface.co/docs/api-inference/index)
- [OpenAI](https://platform.openai.com/docs/api-reference/introduction)
- [Perplexity](https://docs.perplexity.ai/home)
- [together.ai](https://docs.together.ai/docs/introduction)
""")
st.markdown("""
## Usage
Select a task. Choose a service. Enter your API key (refresh browser to clear).
I recommend [duplicating this space](https://huggingface.co/spaces/adamelliotfields/api-inference?duplicate=true) **privately** and persisting your keys as secrets. See [`README.md`](https://huggingface.co/spaces/adamelliotfields/api-inference/blob/main/README.md).
""")