freemt commited on
Commit
44c4eaa
·
1 Parent(s): 16195e5

First commit

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. ubee/__main__.py +4 -3
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🏢
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
7
- app_file: ubee/__main__.py
8
  pinned: false
9
  license: mit
10
  ---
 
4
  colorFrom: blue
5
  colorTo: indigo
6
  sdk: gradio
7
+ app_file: "-m ubee"
8
  pinned: false
9
  license: mit
10
  ---
ubee/__main__.py CHANGED
@@ -10,18 +10,19 @@ def greet(name):
10
  def main():
11
  """Create main entry."""
12
  title = "Ultimatumbee Aligner"
13
- theme = "dark"
14
  description = """WIP showcasing a novel aligner"""
15
  article = \
16
  """Coming soon...
17
  """
18
  examples = [
19
- ["dummy"],
 
20
  ]
21
 
22
  iface = gr.Interface(
23
  fn=greet,
24
- titel=title,
25
  theme=theme,
26
  description=description,
27
  article=article,
 
10
  def main():
11
  """Create main entry."""
12
  title = "Ultimatumbee Aligner"
13
+ theme = "dark-grass"
14
  description = """WIP showcasing a novel aligner"""
15
  article = \
16
  """Coming soon...
17
  """
18
  examples = [
19
+ ["yo"],
20
+ ["me"],
21
  ]
22
 
23
  iface = gr.Interface(
24
  fn=greet,
25
+ title=title,
26
  theme=theme,
27
  description=description,
28
  article=article,