(entities)
| 58 | |
| 59 | |
| 60 | def generate_dictionary_for_complex(entities): |
| 61 | dictionary = {} |
| 62 | for i, entity in enumerate(entities): |
| 63 | key = f"the most related fields of {entity}" |
| 64 | value = "yyy" + str(i + 1) |
| 65 | dictionary[key] = value |
| 66 | return dictionary |
| 67 | |
| 68 | |
| 69 | class Text2SQL: |