├── .gitignore ├── LICENSE ├── README.md ├── examples ├── __init__.py ├── code_self_refinement.py ├── knowledge_base.py ├── natural_language_condition.py ├── replay_criticize_refine.py ├── replay_expand_memory.py ├── teach_remember_refine.py ├── teach_this_library.py └── teach_tunisian.py ├── pyproject.toml └── thinkgpt ├── __init__.py ├── abstract.py ├── condition.py ├── gpt_select.py ├── helper.py ├── infer.py ├── llm.py ├── memory.py ├── refine.py └── summarize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/code_self_refinement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/code_self_refinement.py -------------------------------------------------------------------------------- /examples/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/knowledge_base.py -------------------------------------------------------------------------------- /examples/natural_language_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/natural_language_condition.py -------------------------------------------------------------------------------- /examples/replay_criticize_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/replay_criticize_refine.py -------------------------------------------------------------------------------- /examples/replay_expand_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/replay_expand_memory.py -------------------------------------------------------------------------------- /examples/teach_remember_refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/teach_remember_refine.py -------------------------------------------------------------------------------- /examples/teach_this_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/teach_this_library.py -------------------------------------------------------------------------------- /examples/teach_tunisian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/examples/teach_tunisian.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /thinkgpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thinkgpt/abstract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/abstract.py -------------------------------------------------------------------------------- /thinkgpt/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/condition.py -------------------------------------------------------------------------------- /thinkgpt/gpt_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/gpt_select.py -------------------------------------------------------------------------------- /thinkgpt/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/helper.py -------------------------------------------------------------------------------- /thinkgpt/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/infer.py -------------------------------------------------------------------------------- /thinkgpt/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/llm.py -------------------------------------------------------------------------------- /thinkgpt/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/memory.py -------------------------------------------------------------------------------- /thinkgpt/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/refine.py -------------------------------------------------------------------------------- /thinkgpt/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jina-ai/thinkgpt/HEAD/thinkgpt/summarize.py --------------------------------------------------------------------------------