Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,25 @@ from PIL import Image
|
|
11 |
import re
|
12 |
from urllib.parse import quote
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
# Set up the Anthropic client
|
15 |
client = anthropic.Anthropic(api_key=os.environ.get("ANTHROPIC_API_KEY"))
|
16 |
|
|
|
11 |
import re
|
12 |
from urllib.parse import quote
|
13 |
|
14 |
+
# 1. Configuration
|
15 |
+
Site_Name = '🤖🧠Ant🔬Claude📝'
|
16 |
+
title="🤖🧠Ant🔬Claude📝"
|
17 |
+
helpURL='https://huggingface.co/awacke1'
|
18 |
+
bugURL='https://huggingface.co/spaces/awacke1'
|
19 |
+
icons='🤖🧠🔬📝'
|
20 |
+
st.set_page_config(
|
21 |
+
page_title=title,
|
22 |
+
page_icon=icons,
|
23 |
+
layout="wide",
|
24 |
+
#initial_sidebar_state="expanded",
|
25 |
+
initial_sidebar_state="auto",
|
26 |
+
menu_items={
|
27 |
+
'Get Help': helpURL,
|
28 |
+
'Report a bug': bugURL,
|
29 |
+
'About': title
|
30 |
+
}
|
31 |
+
)
|
32 |
+
|
33 |
# Set up the Anthropic client
|
34 |
client = anthropic.Anthropic(api_key=os.environ.get("ANTHROPIC_API_KEY"))
|
35 |
|