groueix commited on
Commit
c104f1e
·
1 Parent(s): 131728e

french default

Browse files
Files changed (2) hide show
  1. README.md +6 -2
  2. app.py +1 -1
README.md CHANGED
@@ -55,5 +55,9 @@ poetry publish
55
 
56
 
57
  # Deploy to huggingface.
58
- git remote add hf https://huggingface.co/spaces/groueix/copaint
59
- git push hf main
 
 
 
 
 
55
 
56
 
57
  # Deploy to huggingface.
58
+ git remote add hf_en https://huggingface.co/spaces/groueix/copaint
59
+ git remote add hf_fr https://huggingface.co/spaces/groueix/copaint_fr
60
+
61
+ # change language in app.py
62
+ git push hf_en main
63
+ git push hf_fr main
app.py CHANGED
@@ -13,7 +13,7 @@ def main():
13
  parser.add_argument(
14
  "-l", "--language",
15
  type=str,
16
- default="en",
17
  choices=["en", "fr"],
18
  help="Language to use (default: en)"
19
  )
 
13
  parser.add_argument(
14
  "-l", "--language",
15
  type=str,
16
+ default="fr",
17
  choices=["en", "fr"],
18
  help="Language to use (default: en)"
19
  )