Spaces:
Sleeping
Sleeping
luanpoppe
commited on
Commit
·
2607648
1
Parent(s):
0a4c737
fix: removendo prompt auxilair
Browse files- gerar_documento/views.py +3 -3
gerar_documento/views.py
CHANGED
@@ -33,9 +33,9 @@ class GerarDocumentoView(AsyncAPIView):
|
|
33 |
data = cast(Dict[str, Any], serializer.validated_data)
|
34 |
print("\n\ndata: ", data)
|
35 |
|
36 |
-
data["prompt_auxiliar"] = (
|
37 |
-
|
38 |
-
)
|
39 |
|
40 |
# listaPDFs = handle_pdf_files_from_serializer(data["files"])
|
41 |
listaPDFs = [l["link_arquivo"] for l in data["files"]]
|
|
|
33 |
data = cast(Dict[str, Any], serializer.validated_data)
|
34 |
print("\n\ndata: ", data)
|
35 |
|
36 |
+
# data["prompt_auxiliar"] = (
|
37 |
+
# prompt_auxiliar_inicio + "\n" + data["prompt_auxiliar"]
|
38 |
+
# )
|
39 |
|
40 |
# listaPDFs = handle_pdf_files_from_serializer(data["files"])
|
41 |
listaPDFs = [l["link_arquivo"] for l in data["files"]]
|