├── Model_GPT ├── README.md └── gepetto │ ├── gepetto.py │ └── gepetto │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── config.cpython-38.pyc │ ├── config.ini │ ├── config.py │ ├── ida │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── handlers.cpython-38.pyc │ │ └── ui.cpython-38.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-38.pyc │ ├── base.cpython-38.pyc │ └── openai.cpython-38.pyc │ ├── base.py │ └── openai.py ├── Model_deepseek-R1 ├── ReadMe.md ├── gepetto.py └── gepetto │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── config.cpython-38.pyc │ ├── config.ini │ ├── config.py │ ├── ida │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── handlers.cpython-38.pyc │ │ └── ui.cpython-38.pyc │ ├── cli.py │ ├── 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 │ ├── generate_mo_files.sh │ ├── 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 │ └── zh_TW │ │ └── LC_MESSAGES │ │ ├── gepetto.mo │ │ └── gepetto.po │ └── models │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── __init__.cpython-38.pyc │ ├── base.cpython-312.pyc │ ├── base.cpython-38.pyc │ ├── groq.cpython-312.pyc │ ├── model_manager.cpython-312.pyc │ ├── model_manager.cpython-38.pyc │ ├── openai.cpython-312.pyc │ └── openai.cpython-38.pyc │ ├── base.py │ ├── deepseek.py │ ├── groq.py │ ├── local_lmstudio.py │ ├── local_ollama.py │ ├── model_manager.py │ ├── novita_ai.py │ ├── openai.py │ └── together.py ├── Model_xunfei ├── Gepetto_free.py ├── README.md ├── SparkApi.py └── gepetto-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 │ └── zh_CN │ └── LC_MESSAGES │ ├── gepetto.mo │ └── gepetto.po └── README.md /Model_GPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/README.md -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto.py -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/config.ini -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/config.py -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/ida/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/__pycache__/handlers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/ida/__pycache__/handlers.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/__pycache__/ui.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/ida/__pycache__/ui.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/ida/handlers.py -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/ida/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/ida/ui.py -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/es_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/es_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/gepetto.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/gepetto.pot -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/it_IT/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/it_IT/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ru/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ru/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/ru/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/ru/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/tr/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/tr/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/tr/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/tr/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/models/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/__pycache__/openai.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/models/__pycache__/openai.cpython-38.pyc -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/models/base.py -------------------------------------------------------------------------------- /Model_GPT/gepetto/gepetto/models/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_GPT/gepetto/gepetto/models/openai.py -------------------------------------------------------------------------------- /Model_deepseek-R1/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/ReadMe.md -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/config.ini -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/config.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/__pycache__/handlers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/__pycache__/handlers.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/__pycache__/ui.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/__pycache__/ui.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/cli.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/handlers.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/ida/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/ida/ui.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ca_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/es_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/es_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/es_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/fr_FR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/generate_mo_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/generate_mo_files.sh -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/gepetto.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/gepetto.pot -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/it_IT/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/it_IT/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/it_IT/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ko_KR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ru/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ru/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/ru/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/ru/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/tr/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/tr/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/tr/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/tr/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/zh_CN/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/zh_TW/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/zh_TW/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/locales/zh_TW/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/locales/zh_TW/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/groq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/groq.cpython-312.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/model_manager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/model_manager.cpython-312.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/model_manager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/model_manager.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/openai.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/openai.cpython-312.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/__pycache__/openai.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/__pycache__/openai.cpython-38.pyc -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/base.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/deepseek.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/groq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/groq.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/local_lmstudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/local_lmstudio.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/local_ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/local_ollama.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/model_manager.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/novita_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/novita_ai.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/openai.py -------------------------------------------------------------------------------- /Model_deepseek-R1/gepetto/models/together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_deepseek-R1/gepetto/models/together.py -------------------------------------------------------------------------------- /Model_xunfei/Gepetto_free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/Gepetto_free.py -------------------------------------------------------------------------------- /Model_xunfei/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/README.md -------------------------------------------------------------------------------- /Model_xunfei/SparkApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/SparkApi.py -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/ca_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/ca_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/ca_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/ca_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/es_ES/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/es_ES/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/es_ES/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/es_ES/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/fr_FR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/fr_FR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/fr_FR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/fr_FR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/gepetto.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/gepetto.pot -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/it_IT/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/it_IT/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/it_IT/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/it_IT/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/ko_KR/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/ko_KR/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/ko_KR/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/ko_KR/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/zh_CN/LC_MESSAGES/gepetto.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/zh_CN/LC_MESSAGES/gepetto.mo -------------------------------------------------------------------------------- /Model_xunfei/gepetto-locales/zh_CN/LC_MESSAGES/gepetto.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/Model_xunfei/gepetto-locales/zh_CN/LC_MESSAGES/gepetto.po -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FBLeee/IDA_LLMs/HEAD/README.md --------------------------------------------------------------------------------