andymbryant commited on
Commit
35fa9b8
·
1 Parent(s): 784b035

added comment

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -12,6 +12,8 @@ sdk: gradio
12
  ## Overview
13
  This app uses an LLM to generate a mapping between a source and target (template) schema, executing python code to complete the transformation. Of course, there are more efficient ways to create such a pipeline, but this is mostly an exercise in how an LLM would perform and how it might contribute to a human-in-the-loop ETL user experience.
14
 
 
 
15
  ## Tech
16
  - Langchain
17
  - OpenAI (GPT-4 ChatCompletion)
 
12
  ## Overview
13
  This app uses an LLM to generate a mapping between a source and target (template) schema, executing python code to complete the transformation. Of course, there are more efficient ways to create such a pipeline, but this is mostly an exercise in how an LLM would perform and how it might contribute to a human-in-the-loop ETL user experience.
14
 
15
+ A guiding principle is that the LLM should do the mapping, not the transforming. For large datasets, we will quickly bump up against the constraint of time, token cost, and context window length.
16
+
17
  ## Tech
18
  - Langchain
19
  - OpenAI (GPT-4 ChatCompletion)