Alexander Hux commited on
Commit
24e94fb
·
1 Parent(s): ef38c60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -11,8 +11,8 @@ print("google-generativeai:", genai.__version__)
11
 
12
  GOOGLE_API_KEY = os.environ.get("GOOGLE_API_KEY")
13
 
14
- TITLE = """<h1 align="center">Gemini Playground 💬</h1>"""
15
- SUBTITLE = """<h2 align="center">Play with Gemini Pro and Gemini Pro Vision API</h2>"""
16
  DUPLICATE = """
17
  <div style="text-align: center; display: flex; justify-content: center; align-items: center;">
18
  <a href="https://huggingface.co/spaces/SkalskiP/ChatGemini?duplicate=true">
@@ -30,7 +30,7 @@ AVATAR_IMAGES = (
30
  )
31
 
32
  IMAGE_CACHE_DIRECTORY = "/tmp"
33
- IMAGE_WIDTH = 512
34
  CHAT_HISTORY = List[Tuple[Optional[Union[Tuple[str], str]], Optional[str]]]
35
 
36
 
 
11
 
12
  GOOGLE_API_KEY = os.environ.get("GOOGLE_API_KEY")
13
 
14
+ TITLE = """<h1 align="center">Gemini Pro/Vision Chat 💬</h1>"""
15
+ SUBTITLE = """<h2 align="center">Gemini Pro and Gemini Pro Vision API Brought to you by ZEN</h2>"""
16
  DUPLICATE = """
17
  <div style="text-align: center; display: flex; justify-content: center; align-items: center;">
18
  <a href="https://huggingface.co/spaces/SkalskiP/ChatGemini?duplicate=true">
 
30
  )
31
 
32
  IMAGE_CACHE_DIRECTORY = "/tmp"
33
+ IMAGE_WIDTH = 650
34
  CHAT_HISTORY = List[Tuple[Optional[Union[Tuple[str], str]], Optional[str]]]
35
 
36