How to get chatGPT to recognize tables in a prompt

Can someone let me know how to get chatGPT to recognize a table in a prompt without actually specifying that the following is a table. For example

If I wrote:

Please summarize the following text:
[By default, Auto Loader schema inference seeks to avoid schema evolution issues due to type mismatches. For formats that don’t encode data types (JSON and CSV), Auto Loader infers all columns as strings (including nested fields in JSON files).

File format Default inferred data type
JSON String
CSV String
Avro Types encoded in Avro schema
Parquet Types encoded in Parquet schema

he Apache Spark DataFrameReader uses different behavior for schema inference.]

As you see from the above, I have enclosed the text with square brackets . However, within the text there is the following table.

File format Default inferred data type

JSON String
CSV String
Avro Types encoded in Avro schema
Parquet Types encoded in Parquet schema

Will chatGPT recognize the above as a table? Or will need to do the following for chatGPT to recognize as a table

File format Default inferred data type
JSON String
CSV String
Avro Types encoded in Avro schema
Parquet Types encoded in Parquet schema

Thanks

1 Like