├── .github └── workflows │ └── python-tests.yml ├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── paradoxism.iml ├── vcs.xml └── webResources.xml ├── LICENSE ├── README.md ├── doc ├── agent.md ├── docstring_style.md ├── llm.base.md ├── llm.openai.md ├── loop.md ├── ops.base.md ├── prompt_cot_compare.md └── tool.md ├── examples ├── ChineseNLP │ ├── chinese_nlp_examples.md │ └── chinese_nlp_examples.py ├── Making picture books │ ├── Picture_book_examples.py │ ├── assets │ │ └── NotoSansTC-Thin.ttf │ └── image2book.py ├── agentic translator │ ├── translator_examples.md │ └── translator_examples.py ├── assets │ ├── ckeditor-61835a703d2c3.png │ └── pleague-3pt.png ├── chinese_nlp_examples.py ├── customer_service_examples.py ├── formal_writing.py ├── image_ocr_example.py ├── make_tarots.py ├── news_crawler_examples.py ├── translator_examples.md └── translator_examples.py ├── images └── PARADOXISM_LOGO.png ├── paradoxism ├── __init__.py ├── assets │ └── NotoSansTC-Thin.ttf ├── base │ ├── __init__.py │ ├── agent.py │ ├── loop.py │ └── perfm.py ├── config.py ├── context.py ├── llm │ ├── __init__.py │ ├── base.py │ ├── claude.py │ ├── gemini.py │ ├── ollama.py │ └── openai.py ├── model_infos.json ├── model_infos_ui.py ├── oai_sample.json ├── ops │ ├── __init__.py │ ├── ast.py │ ├── base.py │ └── convert.py ├── readers │ └── google_scholar.py ├── server │ ├── api_manager.py │ ├── db.py │ ├── models.py │ ├── scheduler.py │ └── server.py ├── tools │ ├── __init__.py │ ├── image_tools.py │ ├── ppt_tools.py │ ├── tool.py │ └── web_tools.py └── utils │ ├── __init__.py │ ├── docstring_utils.py │ ├── image_utils.py │ ├── input_dict_utils.py │ ├── markdown_utils.py │ ├── regex_utils.py │ ├── text_utils.py │ └── web_utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── test ├── test_ast.py ├── test_docstring.py ├── test_force_cast.py ├── test_loop.py ├── test_ppt.py ├── test_prompt_cot.py ├── test_pseudo_functions.py ├── test_scholar.py └── test_tool.py /.github/workflows/python-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.github/workflows/python-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/paradoxism.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/paradoxism.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/.idea/webResources.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/README.md -------------------------------------------------------------------------------- /doc/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/agent.md -------------------------------------------------------------------------------- /doc/docstring_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/docstring_style.md -------------------------------------------------------------------------------- /doc/llm.base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/llm.base.md -------------------------------------------------------------------------------- /doc/llm.openai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/llm.openai.md -------------------------------------------------------------------------------- /doc/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/loop.md -------------------------------------------------------------------------------- /doc/ops.base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/ops.base.md -------------------------------------------------------------------------------- /doc/prompt_cot_compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/prompt_cot_compare.md -------------------------------------------------------------------------------- /doc/tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/doc/tool.md -------------------------------------------------------------------------------- /examples/ChineseNLP/chinese_nlp_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/ChineseNLP/chinese_nlp_examples.md -------------------------------------------------------------------------------- /examples/ChineseNLP/chinese_nlp_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/ChineseNLP/chinese_nlp_examples.py -------------------------------------------------------------------------------- /examples/Making picture books/Picture_book_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/Making picture books/Picture_book_examples.py -------------------------------------------------------------------------------- /examples/Making picture books/assets/NotoSansTC-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/Making picture books/assets/NotoSansTC-Thin.ttf -------------------------------------------------------------------------------- /examples/Making picture books/image2book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/Making picture books/image2book.py -------------------------------------------------------------------------------- /examples/agentic translator/translator_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/agentic translator/translator_examples.md -------------------------------------------------------------------------------- /examples/agentic translator/translator_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/agentic translator/translator_examples.py -------------------------------------------------------------------------------- /examples/assets/ckeditor-61835a703d2c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/assets/ckeditor-61835a703d2c3.png -------------------------------------------------------------------------------- /examples/assets/pleague-3pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/assets/pleague-3pt.png -------------------------------------------------------------------------------- /examples/chinese_nlp_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/chinese_nlp_examples.py -------------------------------------------------------------------------------- /examples/customer_service_examples.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/formal_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/formal_writing.py -------------------------------------------------------------------------------- /examples/image_ocr_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/image_ocr_example.py -------------------------------------------------------------------------------- /examples/make_tarots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/make_tarots.py -------------------------------------------------------------------------------- /examples/news_crawler_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/news_crawler_examples.py -------------------------------------------------------------------------------- /examples/translator_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/translator_examples.md -------------------------------------------------------------------------------- /examples/translator_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/examples/translator_examples.py -------------------------------------------------------------------------------- /images/PARADOXISM_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/images/PARADOXISM_LOGO.png -------------------------------------------------------------------------------- /paradoxism/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/__init__.py -------------------------------------------------------------------------------- /paradoxism/assets/NotoSansTC-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/assets/NotoSansTC-Thin.ttf -------------------------------------------------------------------------------- /paradoxism/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paradoxism/base/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/base/agent.py -------------------------------------------------------------------------------- /paradoxism/base/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/base/loop.py -------------------------------------------------------------------------------- /paradoxism/base/perfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/base/perfm.py -------------------------------------------------------------------------------- /paradoxism/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/config.py -------------------------------------------------------------------------------- /paradoxism/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/context.py -------------------------------------------------------------------------------- /paradoxism/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/llm/__init__.py -------------------------------------------------------------------------------- /paradoxism/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/llm/base.py -------------------------------------------------------------------------------- /paradoxism/llm/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/llm/claude.py -------------------------------------------------------------------------------- /paradoxism/llm/gemini.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paradoxism/llm/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/llm/ollama.py -------------------------------------------------------------------------------- /paradoxism/llm/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/llm/openai.py -------------------------------------------------------------------------------- /paradoxism/model_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/model_infos.json -------------------------------------------------------------------------------- /paradoxism/model_infos_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/model_infos_ui.py -------------------------------------------------------------------------------- /paradoxism/oai_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/oai_sample.json -------------------------------------------------------------------------------- /paradoxism/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paradoxism/ops/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/ops/ast.py -------------------------------------------------------------------------------- /paradoxism/ops/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/ops/base.py -------------------------------------------------------------------------------- /paradoxism/ops/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/ops/convert.py -------------------------------------------------------------------------------- /paradoxism/readers/google_scholar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/readers/google_scholar.py -------------------------------------------------------------------------------- /paradoxism/server/api_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/server/api_manager.py -------------------------------------------------------------------------------- /paradoxism/server/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/server/db.py -------------------------------------------------------------------------------- /paradoxism/server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/server/models.py -------------------------------------------------------------------------------- /paradoxism/server/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/server/scheduler.py -------------------------------------------------------------------------------- /paradoxism/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/server/server.py -------------------------------------------------------------------------------- /paradoxism/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/tools/__init__.py -------------------------------------------------------------------------------- /paradoxism/tools/image_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/tools/image_tools.py -------------------------------------------------------------------------------- /paradoxism/tools/ppt_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/tools/ppt_tools.py -------------------------------------------------------------------------------- /paradoxism/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/tools/tool.py -------------------------------------------------------------------------------- /paradoxism/tools/web_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/tools/web_tools.py -------------------------------------------------------------------------------- /paradoxism/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/__init__.py -------------------------------------------------------------------------------- /paradoxism/utils/docstring_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/docstring_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/image_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/input_dict_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/input_dict_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/markdown_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/markdown_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/regex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/regex_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/text_utils.py -------------------------------------------------------------------------------- /paradoxism/utils/web_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/paradoxism/utils/web_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_ast.py -------------------------------------------------------------------------------- /test/test_docstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_docstring.py -------------------------------------------------------------------------------- /test/test_force_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_force_cast.py -------------------------------------------------------------------------------- /test/test_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_loop.py -------------------------------------------------------------------------------- /test/test_ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_ppt.py -------------------------------------------------------------------------------- /test/test_prompt_cot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_prompt_cot.py -------------------------------------------------------------------------------- /test/test_pseudo_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_pseudo_functions.py -------------------------------------------------------------------------------- /test/test_scholar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_scholar.py -------------------------------------------------------------------------------- /test/test_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanYiin/paradoxism/HEAD/test/test_tool.py --------------------------------------------------------------------------------