hysts HF staff commited on
Commit
bf6fc6b
1 Parent(s): 3ccfd3d
Files changed (2) hide show
  1. app.py +4 -1
  2. style.css +5 -0
app.py CHANGED
@@ -44,7 +44,10 @@ from app_scribble_interactive import \
44
  from app_seg import create_demo as create_demo_seg
45
  from model import Model, download_all_controlnet_weights
46
 
47
- DESCRIPTION = '# [ControlNet v1.0](https://github.com/lllyasviel/ControlNet)'
 
 
 
48
 
49
  SPACE_ID = os.getenv('SPACE_ID')
50
  ALLOW_CHANGING_BASE_MODEL = SPACE_ID != 'hysts/ControlNet'
 
44
  from app_seg import create_demo as create_demo_seg
45
  from model import Model, download_all_controlnet_weights
46
 
47
+ DESCRIPTION = '''# [ControlNet v1.0](https://github.com/lllyasviel/ControlNet)
48
+
49
+ <p class="note">New ControlNet v1.1 is available <a href="https://huggingface.co/spaces/hysts/ControlNet-v1-1">here</a>.</p>
50
+ '''
51
 
52
  SPACE_ID = os.getenv('SPACE_ID')
53
  ALLOW_CHANGING_BASE_MODEL = SPACE_ID != 'hysts/ControlNet'
style.css CHANGED
@@ -1,3 +1,8 @@
1
  h1 {
2
  text-align: center;
3
  }
 
 
 
 
 
 
1
  h1 {
2
  text-align: center;
3
  }
4
+
5
+ .note {
6
+ text-align: center;
7
+ font-size: 150%;
8
+ }