awacke1 commited on
Commit
6ad07f1
1 Parent(s): 99afc6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
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