Update app.py
Browse files
app.py
CHANGED
@@ -46,10 +46,10 @@ login(token=hf_token)
|
|
46 |
# Define the model pipeline with additional generation parameters
|
47 |
model_pipeline = pipeline(
|
48 |
# model="meta-llama/Llama-3.2-1B",
|
49 |
-
model="meta-llama/Llama-3.2-
|
50 |
#use_auth_token=hf_token,
|
51 |
#max_length=1000, # You can increase this if needed
|
52 |
-
max_new_tokens=
|
53 |
)
|
54 |
|
55 |
# Use the pipeline in HuggingFacePipeline
|
|
|
46 |
# Define the model pipeline with additional generation parameters
|
47 |
model_pipeline = pipeline(
|
48 |
# model="meta-llama/Llama-3.2-1B",
|
49 |
+
model="meta-llama/Llama-3.2-1B",
|
50 |
#use_auth_token=hf_token,
|
51 |
#max_length=1000, # You can increase this if needed
|
52 |
+
max_new_tokens=900 # Limit how many tokens are generated
|
53 |
)
|
54 |
|
55 |
# Use the pipeline in HuggingFacePipeline
|