Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -61,6 +61,7 @@ def main():
|
|
61 |
df = pd.read_csv(uploaded_file)
|
62 |
|
63 |
if 'job_title' in df.columns:
|
|
|
64 |
job_titles = df['job_title'].tolist()
|
65 |
|
66 |
# Definir el prompt con in-context learning
|
@@ -76,6 +77,7 @@ def main():
|
|
76 |
|
77 |
|
78 |
st.write("Prompt inicial con In-context Learning:")
|
|
|
79 |
st.write(initial_prompt)
|
80 |
|
81 |
if st.button("Generar respuesta"):
|
|
|
61 |
df = pd.read_csv(uploaded_file)
|
62 |
|
63 |
if 'job_title' in df.columns:
|
64 |
+
query = "aspiring human resources specialist"
|
65 |
job_titles = df['job_title'].tolist()
|
66 |
|
67 |
# Definir el prompt con in-context learning
|
|
|
77 |
|
78 |
|
79 |
st.write("Prompt inicial con In-context Learning:")
|
80 |
+
st.write(query)
|
81 |
st.write(initial_prompt)
|
82 |
|
83 |
if st.button("Generar respuesta"):
|