-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5359155
commit f8e9be7
Showing
9 changed files
with
394 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
temp/* | ||
.env | ||
outputs/* | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
from utils.my_types import Model | ||
|
||
models: list[Model] = [ | ||
Model("llama3"), | ||
# Model("llama3"), | ||
Model("gpt-4o"), | ||
# Model("phi3"), | ||
# Model("mistral"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,40 @@ | ||
from utils.my_types import Variable | ||
|
||
options = ["<<A>>", "<<B>>", "<<C>>"] | ||
options = [] | ||
|
||
variables: list[Variable] = [ | ||
Variable( | ||
id="insegurança_alimentar", | ||
content="A família é composta pela mãe e os filhos Sofia (3) e Davi (5). Não possuem fonte de renda. Solicito o auxílio vulnerabilidade devido a situação de insegurança alimentar da família.", | ||
expected=["<<C>>"], | ||
options=options, | ||
), | ||
Variable( | ||
id="fralda_geriátrica", | ||
content="Família residente em domicílio improvisado e tem um idoso acamado. Solicita-se o auxílio vulnerabilidade a fim de garantir a compra de fraldas geriátricas e outros insumos.", | ||
expected=["<<A>>"], | ||
options=options, | ||
), | ||
Variable( | ||
id="acidente", | ||
content="Família monoparental composta por Maria e os filhos João (12) e Marcos (10). Tinham como fonte de renda o trabalho informal de Maria, mas esta sofreu um acidente e está impossibilidade de trabalhar. Solicita-se, portanto, o auxílio vulnerabilidade.", | ||
expected=["<<B>>"], | ||
options=options, | ||
), | ||
Variable( | ||
id="remédios", | ||
content="A família está com o aluguel atrasado e necessita da compra de remédios para José (48), que tem lúpus. Solicita-se, portanto, o auxílio vulnerabilidade.", | ||
expected=["<<A>>"], | ||
options=options, | ||
), | ||
Variable( | ||
id="pensão", | ||
content="Família composta por Jaqueline e a filha Helena (2). Tinham como fonte de renda a pensão alimentícia de Helena. No entanto, o progenitor deixou de realizar o pagamento há dois meses. Solicita-se, portanto, o auxílio vulnerabilidade, a fim de mitigar as desproteções vividas pela família.", | ||
expected=["<<B>>"], | ||
options=options, | ||
), | ||
Variable( | ||
id="despesas_essenciais", | ||
content="Família monoparental composta por Josefa e 5 filhos com idades entre 1 e 17 anos. Contam apenas com a renda de coleta de material reciclável e relatam dificuldade para manter as despesas essenciais. Solicita-se, portanto, o auxílio vulnerabilidade.", | ||
expected=["<<C>>"], | ||
id="recurso negado", | ||
content="Vistos e relatados estes autos em que são partes as acima indicadas, acordam os Ministros da PRIMEIRA TURMA do Superior Tribunal de Justiça, em sessão virtual de 03/10/2023 a 09/10/2023, por unanimidade, negar provimento ao recurso, nos termos do voto do Sr. Ministro Relator. Os Srs. Ministros Benedito Gonçalves, Sérgio Kukina, Regina Helena Costa e Gurgel de Faria votaram com o Sr. Ministro Relator. Presidiu o julgamento o Sr. Ministro Paulo Sérgio Domingues.", | ||
expected=[ | ||
"""```jsonl\n\n{"resultado": "NEGADO","unanimidade": "SIM","modificativos": "NAO","conhecer": null,"presidiu": "Paulo","ausente": null,"aFavor": "Benedito, Sérgio, Regina, Gurgel","vencidos": null,"lavrara": null,"desempate": null,"votoVista": null}\n\n```""" | ||
], | ||
options=options, | ||
), | ||
# Variable(id="recurso parcial"), | ||
# Variable(id="recurso aceito"), | ||
# Variable(id="agravo negado"), | ||
# Variable(id="agravo parcial"), | ||
# Variable(id="agravo aceito"), | ||
# Variable(id="x negado"), | ||
# Variable(id="x parcial"), | ||
# Variable(id="x aceito"), | ||
# Variable(id="maioria"), | ||
# Variable(id="modificativos"), | ||
# Variable(id="conhecer nan"), | ||
# Variable(id="conhecer"), | ||
# Variable( | ||
# id="conhecer parcial", | ||
# content="Vistos e relatados estes autos em que são partes as acima indicadas, acordam os Ministros da PRIMEIRA TURMA do Superior Tribunal de Justiça, em sessão virtual de 26/09/2023 a 02/10/2023, por unanimidade, conhecer parcialmente do recurso, mas lhe negar provimento, nos termos do voto do Sr. Ministro Gurgel de Faria. Os Srs. Ministros Benedito Gonçalves, Sérgio Kukina, Regina Helena Costa e Paulo Sérgio Domingues votaram com o Sr. Ministro Relator. Presidiu o julgamento o Sr. Ministro Paulo Sérgio Domingues.", | ||
# expected=[ | ||
# """{"resultado": "NEGADO","unanimidade": "SIM","modificativos": "NAO","conhecer": "PARCIAL","presidiu": "Paulo","ausente": null,"aFavor": Benedito, Sérgio, Regina, Paulo","vencidos": null,"lavrara": null,"desempate": null,"votoVista": null}""" | ||
# ], | ||
# options=options, | ||
# ), | ||
# Variable(id="nao conhecer"), | ||
# Variable(id="ausente"), | ||
# Variable(id="lavrara"), | ||
# Variable(id="desempate"), | ||
# Variable(id="voto vista 1"), | ||
# Variable(id="voto vista 2"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,188 @@ | ||
absl-py==2.1.0 | ||
anyio==4.3.0 | ||
argon2-cffi==23.1.0 | ||
argon2-cffi-bindings==21.2.0 | ||
arrow==1.3.0 | ||
asttokens==2.4.1 | ||
astunparse==1.6.3 | ||
async-lru==2.0.4 | ||
attrs==23.2.0 | ||
autopep8==2.0.4 | ||
Babel==2.14.0 | ||
beautifulsoup4==4.12.3 | ||
bleach==6.1.0 | ||
blinker==1.4 | ||
certifi==2024.2.2 | ||
exceptiongroup==1.2.1 | ||
cffi==1.16.0 | ||
charset-normalizer==3.3.2 | ||
check50==3.3.11 | ||
click==8.1.7 | ||
comm==0.2.2 | ||
command-not-found==0.3 | ||
cryptography==3.4.8 | ||
dbus-python==1.2.18 | ||
debugpy==1.8.1 | ||
decorator==5.1.1 | ||
defusedxml==0.7.1 | ||
distro==1.7.0 | ||
distro-info==1.1+ubuntu0.1 | ||
EditorConfig==0.12.4 | ||
exceptiongroup==1.2.0 | ||
executing==2.0.1 | ||
fastjsonschema==2.19.1 | ||
filelock==3.13.4 | ||
flatbuffers==24.3.25 | ||
fqdn==1.5.1 | ||
fsspec==2024.3.1 | ||
gast==0.5.4 | ||
google-pasta==0.2.0 | ||
greenlet==1.1.2 | ||
grpcio==1.62.2 | ||
h11==0.14.0 | ||
h5py==3.11.0 | ||
httpcore==1.0.5 | ||
httplib2==0.20.2 | ||
httpx==0.27.0 | ||
idna==3.7 | ||
ollama==0.1.9 | ||
huggingface-hub==0.22.2 | ||
icdiff==2.0.7 | ||
idna==3.6 | ||
importlib-metadata==4.6.4 | ||
iniconfig==2.0.0 | ||
ipykernel==6.29.4 | ||
ipython==8.23.0 | ||
isoduration==20.11.0 | ||
jedi==0.19.1 | ||
jeepney==0.7.1 | ||
jellyfish==0.11.2 | ||
Jinja2==3.1.3 | ||
joblib==1.4.0 | ||
jsbeautifier==1.15.1 | ||
json5==0.9.25 | ||
jsonpointer==2.4 | ||
jsonschema==4.21.1 | ||
jsonschema-specifications==2023.12.1 | ||
jupyter-events==0.10.0 | ||
jupyter-lsp==2.2.5 | ||
jupyter_client==8.6.1 | ||
jupyter_core==5.7.2 | ||
jupyter_server==2.14.0 | ||
jupyter_server_terminals==0.5.3 | ||
jupyterlab==4.1.6 | ||
jupyterlab_pygments==0.3.0 | ||
jupyterlab_server==2.27.0 | ||
kaggle==1.6.12 | ||
keras==3.3.2 | ||
keyring==23.5.0 | ||
launchpadlib==1.10.16 | ||
lazr.restfulclient==0.14.4 | ||
lazr.uri==1.0.6 | ||
lib50==3.0.11 | ||
libclang==18.1.1 | ||
Markdown==3.6 | ||
markdown-it-py==3.0.0 | ||
MarkupSafe==2.1.5 | ||
matplotlib-inline==0.1.7 | ||
mdurl==0.1.2 | ||
mistune==3.0.2 | ||
ml-dtypes==0.3.2 | ||
more-itertools==8.10.0 | ||
msgpack==1.0.3 | ||
namex==0.0.8 | ||
nbclient==0.10.0 | ||
nbconvert==7.16.3 | ||
nbformat==5.10.4 | ||
nest-asyncio==1.6.0 | ||
netifaces==0.11.0 | ||
nltk==3.8.1 | ||
notebook==7.1.3 | ||
notebook_shim==0.2.4 | ||
numpy==1.26.4 | ||
oauthlib==3.2.0 | ||
ollama==0.2.1 | ||
opt-einsum==3.3.0 | ||
optree==0.11.0 | ||
overrides==7.7.0 | ||
packaging==24.0 | ||
pandas==2.2.2 | ||
pandocfilters==1.5.1 | ||
parso==0.8.4 | ||
pexpect==4.9.0 | ||
pillow==10.3.0 | ||
platformdirs==4.2.0 | ||
pluggy==1.4.0 | ||
polars==0.20.22 | ||
prometheus_client==0.20.0 | ||
prompt-toolkit==3.0.43 | ||
protobuf==4.25.3 | ||
psutil==5.9.8 | ||
ptyprocess==0.7.0 | ||
pure-eval==0.2.2 | ||
pycodestyle==2.10.0 | ||
pycparser==2.22 | ||
pygame==2.5.2 | ||
Pygments==2.17.2 | ||
PyGObject==3.42.1 | ||
PyJWT==2.3.0 | ||
pynvim==0.4.2 | ||
pyparsing==2.4.7 | ||
pytesseract==0.3.10 | ||
python-apt==2.4.0+ubuntu2 | ||
python-dateutil==2.9.0.post0 | ||
python-dotenv==1.0.1 | ||
python-json-logger==2.0.7 | ||
python-magic==0.4.27 | ||
python-slugify==8.0.4 | ||
pytz==2024.1 | ||
PyYAML==6.0.1 | ||
pyzmq==26.0.2 | ||
referencing==0.34.0 | ||
regex==2024.4.16 | ||
requests==2.31.0 | ||
rfc3339-validator==0.1.4 | ||
rfc3986-validator==0.1.1 | ||
rich==13.7.1 | ||
rpds-py==0.18.0 | ||
safetensors==0.4.3 | ||
scikit-learn==1.4.2 | ||
scipy==1.13.0 | ||
SecretStorage==3.3.1 | ||
Send2Trash==1.8.3 | ||
six==1.16.0 | ||
sniffio==1.3.1 | ||
soupsieve==2.5 | ||
stack-data==0.6.3 | ||
style50==2.10.2 | ||
submit50==3.1.4 | ||
systemd-python==234 | ||
tensorboard==2.16.2 | ||
tensorboard-data-server==0.7.2 | ||
tensorflow==2.16.1 | ||
tensorflow-io-gcs-filesystem==0.36.0 | ||
termcolor==1.1.0 | ||
terminado==0.18.1 | ||
text-unidecode==1.3 | ||
tf_keras==2.16.0 | ||
threadpoolctl==3.4.0 | ||
tinycss2==1.2.1 | ||
tokenizers==0.19.1 | ||
tomli==2.0.1 | ||
tornado==6.4 | ||
tqdm==4.66.2 | ||
traitlets==5.14.3 | ||
transformers==4.40.1 | ||
types-python-dateutil==2.9.0.20240316 | ||
typing_extensions==4.11.0 | ||
tzdata==2024.1 | ||
ubuntu-advantage-tools==8001 | ||
ufw==0.36.1 | ||
unattended-upgrades==0.1 | ||
uri-template==1.3.0 | ||
urllib3==2.2.1 | ||
wadllib==1.3.6 | ||
wcwidth==0.2.13 | ||
webcolors==1.13 | ||
webencodings==0.5.1 | ||
websocket-client==1.7.0 | ||
Werkzeug==3.0.2 | ||
wrapt==1.16.0 | ||
zipp==1.0.0 |
Oops, something went wrong.