Jhsmit commited on
Commit
2513940
·
1 Parent(s): d9fec49

feat: update welcome text

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,7 +1,6 @@
1
  import json
2
  from dataclasses import dataclass
3
  from io import StringIO
4
- from pathlib import Path
5
  from typing import Literal, Optional, TypedDict, cast
6
  from zipfile import ZipFile
7
 
@@ -240,7 +239,9 @@ def Page():
240
  )
241
 
242
  if load_result.not_called:
243
- solara.Text("Drop and drag an alphafold3 result .zip file to get started")
 
 
244
  elif load_result.pending:
245
  solara.ProgressLinear(load_result.pending)
246
  elif load_result.finished:
 
1
  import json
2
  from dataclasses import dataclass
3
  from io import StringIO
 
4
  from typing import Literal, Optional, TypedDict, cast
5
  from zipfile import ZipFile
6
 
 
239
  )
240
 
241
  if load_result.not_called:
242
+ solara.Markdown(
243
+ "Drag and drop an alphafold3 result .zip file to get started. You can download an example file [here](https://www.gstatic.com/alphafoldserver/examplefold_pdb_8aw3/examplefold_pdb_8aw3.zip)."
244
+ )
245
  elif load_result.pending:
246
  solara.ProgressLinear(load_result.pending)
247
  elif load_result.finished: