Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ api_token = os.getenv("HUGGINGFACEHUB_API_TOKEN")
|
|
14 |
# Initialize model and tokenizer
|
15 |
MAX_LENGTH = 128
|
16 |
model_name = "internlm/internlm2_5-7b"
|
17 |
-
model = AirLLMInternLM
|
18 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
19 |
|
20 |
# Streamlit app configuration
|
|
|
14 |
# Initialize model and tokenizer
|
15 |
MAX_LENGTH = 128
|
16 |
model_name = "internlm/internlm2_5-7b"
|
17 |
+
model = AirLLMInternLM(model_name)
|
18 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
19 |
|
20 |
# Streamlit app configuration
|