Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,6 @@ df.fillna("", inplace=True)
|
|
9 |
print(df.head())
|
10 |
|
11 |
def response(user_question):
|
12 |
-
user_question = user_question.astype(str)
|
13 |
if not isinstance(user_question, str):
|
14 |
raise TypeError(f"Esperado uma string para a pergunta, mas recebeu {type(user_question)}")
|
15 |
|
|
|
9 |
print(df.head())
|
10 |
|
11 |
def response(user_question):
|
|
|
12 |
if not isinstance(user_question, str):
|
13 |
raise TypeError(f"Esperado uma string para a pergunta, mas recebeu {type(user_question)}")
|
14 |
|