tamatwi commited on
Commit
61b623b
1 Parent(s): bc407c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -48,7 +48,10 @@ def generate():
48
  # Your code here
49
 
50
  # 日本語モデルを指定
51
- model_name = "SakanaAI/EvoLLM-JP-v1-7B"
 
 
 
52
 
53
  # トークナイザーとパイプラインの設定
54
  tokenizer = AutoTokenizer.from_pretrained(model_name)
 
48
  # Your code here
49
 
50
  # 日本語モデルを指定
51
+ def my_function():
52
+ model_name = "SakanaAI/EvoLLM-JP-v1-7B" # This line is now correctly indented
53
+ # Add more code here, all indented at the same level
54
+ # model_name = "SakanaAI/EvoLLM-JP-v1-7B"
55
 
56
  # トークナイザーとパイプラインの設定
57
  tokenizer = AutoTokenizer.from_pretrained(model_name)