Chris4K commited on
Commit
825e760
·
verified ·
1 Parent(s): caacbc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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, "max_length": 512},
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: