Update app.py
Browse files
app.py
CHANGED
@@ -703,11 +703,12 @@ Provide your suggestions in a Python dictionary format."""
|
|
703 |
llm = HuggingFacePipeline.from_model_id(
|
704 |
model_id="google/flan-t5-large",
|
705 |
task="text2text-generation",
|
706 |
-
model_kwargs={"temperature": 0.7, "
|
707 |
)
|
708 |
|
709 |
-
# Generate suggestions
|
710 |
-
suggested_settings = llm(prompt)
|
|
|
711 |
|
712 |
# Parse the generated text to extract the dictionary
|
713 |
try:
|
|
|
703 |
llm = HuggingFacePipeline.from_model_id(
|
704 |
model_id="google/flan-t5-large",
|
705 |
task="text2text-generation",
|
706 |
+
model_kwargs={"temperature": 0.7, "max_new_tokens": 512}, # Changed max_length to max_new_tokens
|
707 |
)
|
708 |
|
709 |
+
# Generate suggestions
|
710 |
+
suggested_settings = llm.invoke(prompt)
|
711 |
+
|
712 |
|
713 |
# Parse the generated text to extract the dictionary
|
714 |
try:
|