├── README.md ├── gepetto.py └── gepetto ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc └── config.cpython-310.pyc ├── config.ini ├── config.py ├── ida ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── handlers.cpython-310.pyc │ └── ui.cpython-310.pyc ├── handlers.py └── ui.py ├── locales ├── ca_ES │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── es_ES │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── gepetto.pot ├── it_IT │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── ru │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po ├── tr │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po └── zh_CN │ └── LC_MESSAGES │ ├── gepetto.mo │ └── gepetto.po └── models ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── base.cpython-310.pyc └── openai.cpython-310.pyc ├── base.py └── openai.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/README.md -------------------------------------------------------------------------------- /gepetto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto.py -------------------------------------------------------------------------------- /gepetto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gepetto/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/__pycache__/config.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/__pycache__/config.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/config.ini -------------------------------------------------------------------------------- /gepetto/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/config.py -------------------------------------------------------------------------------- /gepetto/ida/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gepetto/ida/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/ida/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/ida/__pycache__/handlers.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/ida/__pycache__/handlers.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/ida/__pycache__/ui.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/ida/__pycache__/ui.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/ida/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/ida/handlers.py -------------------------------------------------------------------------------- /gepetto/ida/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/ida/ui.py -------------------------------------------------------------------------------- /gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/es_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/es_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/gepetto.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/gepetto.pot -------------------------------------------------------------------------------- /gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/it_IT/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/it_IT/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/ru/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ru/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/ru/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/ru/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/tr/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/tr/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/tr/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/tr/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /gepetto/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gepetto/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/models/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/models/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/models/__pycache__/openai.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/models/__pycache__/openai.cpython-310.pyc -------------------------------------------------------------------------------- /gepetto/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/models/base.py -------------------------------------------------------------------------------- /gepetto/models/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkunpacker/IDA-Gepetto/HEAD/gepetto/models/openai.py --------------------------------------------------------------------------------