Zekun Wu commited on
Commit
9f3b753
·
1 Parent(s): 465ad40
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ if uploaded_file is not None:
92
  agent = GPTAgent(api_key, endpoint_url, deployment_name, api_version)
93
 
94
  # Example processing step (adapt as needed)
95
- df['Response'] = df['Input Column'].apply(lambda x: agent.invoke(x, parameters))
96
 
97
  # Display processed data
98
  st.write('Processed Data:', df)
 
92
  agent = GPTAgent(api_key, endpoint_url, deployment_name, api_version)
93
 
94
  # Example processing step (adapt as needed)
95
+ df['Response'] = df['prompt'].apply(lambda x: agent.invoke(x, parameters))
96
 
97
  # Display processed data
98
  st.write('Processed Data:', df)