GuglielmoTor commited on
Commit
cf1cd44
·
verified ·
1 Parent(s): 6267007

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -687,7 +687,7 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="sky"),
687
  }
688
 
689
  schemas_text_for_display = "Schemi DataFrames inviati all'Agente:\n\n"
690
- # from eb_agent_module import get_all_schemas_representation # Assuming this is correctly imported in your main file
691
  schemas_text_for_display += get_all_schemas_representation(dataframes_for_agent) # Using the mock or your actual function
692
  max_schema_display_len = 1500
693
  if len(schemas_text_for_display) > max_schema_display_len:
 
687
  }
688
 
689
  schemas_text_for_display = "Schemi DataFrames inviati all'Agente:\n\n"
690
+ from eb_agent_module import get_all_schemas_representation # Assuming this is correctly imported in your main file
691
  schemas_text_for_display += get_all_schemas_representation(dataframes_for_agent) # Using the mock or your actual function
692
  max_schema_display_len = 1500
693
  if len(schemas_text_for_display) > max_schema_display_len: