├── .gitignore ├── API_Configs └── OpenAI.txt ├── API_Nodes ├── ChatGPT.py ├── LM_Studio.py ├── Ollama.py ├── llama-cpp.py └── oobaboogaOpenAI.py ├── Agents ├── AppendAgent.py ├── Assistant.py ├── Critic.py ├── Engineer.py ├── Executor.py ├── Planner.py ├── Scientist.py └── UserProxy.py ├── AutoUpdate.json ├── Chat.py ├── Conditioning.py ├── DisplayText.py ├── DisplayTextAsImage.py ├── EVAL.py ├── Groupchat.py ├── LICENSE ├── LoadAPIconfig.py ├── LoadTXT.py ├── NotWorkingNodes └── MemGPT.py ├── Old └── Textnode.py ├── Output2String.py ├── README.md ├── TextGeneration.py ├── TextOutput.py ├── Update.bat ├── Workflow ├── GroupChat.json ├── GroupChat.png ├── SimplePromptEnhancer.json ├── SimplePromptEnhancer.png ├── Task_Solving_with_Code_Generation_1.json ├── Task_Solving_with_Code_Generation_1.png ├── Task_Solving_with_Code_Generation_2.json ├── Task_Solving_with_Code_Generation_2.png └── llama-cpp.json ├── __init__.py ├── config.py ├── install.bat ├── llava.py ├── models └── LLMs here.txt ├── pyproject.toml ├── requirements.txt ├── temp └── llava temp files.txt └── update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /API_Configs/OpenAI.txt: -------------------------------------------------------------------------------- 1 | Your OpenAI API key here -------------------------------------------------------------------------------- /API_Nodes/ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/API_Nodes/ChatGPT.py -------------------------------------------------------------------------------- /API_Nodes/LM_Studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/API_Nodes/LM_Studio.py -------------------------------------------------------------------------------- /API_Nodes/Ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/API_Nodes/Ollama.py -------------------------------------------------------------------------------- /API_Nodes/llama-cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/API_Nodes/llama-cpp.py -------------------------------------------------------------------------------- /API_Nodes/oobaboogaOpenAI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/API_Nodes/oobaboogaOpenAI.py -------------------------------------------------------------------------------- /Agents/AppendAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/AppendAgent.py -------------------------------------------------------------------------------- /Agents/Assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Assistant.py -------------------------------------------------------------------------------- /Agents/Critic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Critic.py -------------------------------------------------------------------------------- /Agents/Engineer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Engineer.py -------------------------------------------------------------------------------- /Agents/Executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Executor.py -------------------------------------------------------------------------------- /Agents/Planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Planner.py -------------------------------------------------------------------------------- /Agents/Scientist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/Scientist.py -------------------------------------------------------------------------------- /Agents/UserProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Agents/UserProxy.py -------------------------------------------------------------------------------- /AutoUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/AutoUpdate.json -------------------------------------------------------------------------------- /Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Chat.py -------------------------------------------------------------------------------- /Conditioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Conditioning.py -------------------------------------------------------------------------------- /DisplayText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/DisplayText.py -------------------------------------------------------------------------------- /DisplayTextAsImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/DisplayTextAsImage.py -------------------------------------------------------------------------------- /EVAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/EVAL.py -------------------------------------------------------------------------------- /Groupchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Groupchat.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /LoadAPIconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/LoadAPIconfig.py -------------------------------------------------------------------------------- /LoadTXT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/LoadTXT.py -------------------------------------------------------------------------------- /NotWorkingNodes/MemGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/NotWorkingNodes/MemGPT.py -------------------------------------------------------------------------------- /Old/Textnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Old/Textnode.py -------------------------------------------------------------------------------- /Output2String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Output2String.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/README.md -------------------------------------------------------------------------------- /TextGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/TextGeneration.py -------------------------------------------------------------------------------- /TextOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/TextOutput.py -------------------------------------------------------------------------------- /Update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Update.bat -------------------------------------------------------------------------------- /Workflow/GroupChat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/GroupChat.json -------------------------------------------------------------------------------- /Workflow/GroupChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/GroupChat.png -------------------------------------------------------------------------------- /Workflow/SimplePromptEnhancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/SimplePromptEnhancer.json -------------------------------------------------------------------------------- /Workflow/SimplePromptEnhancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/SimplePromptEnhancer.png -------------------------------------------------------------------------------- /Workflow/Task_Solving_with_Code_Generation_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/Task_Solving_with_Code_Generation_1.json -------------------------------------------------------------------------------- /Workflow/Task_Solving_with_Code_Generation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/Task_Solving_with_Code_Generation_1.png -------------------------------------------------------------------------------- /Workflow/Task_Solving_with_Code_Generation_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/Task_Solving_with_Code_Generation_2.json -------------------------------------------------------------------------------- /Workflow/Task_Solving_with_Code_Generation_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/Task_Solving_with_Code_Generation_2.png -------------------------------------------------------------------------------- /Workflow/llama-cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/Workflow/llama-cpp.json -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/__init__.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/config.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/install.bat -------------------------------------------------------------------------------- /llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/llava.py -------------------------------------------------------------------------------- /models/LLMs here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyautogen>0.2 2 | pymemgpt 3 | llama-cpp-python 4 | Pillow<10 5 | websockets<12.0 6 | -------------------------------------------------------------------------------- /temp/llava temp files.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonym-git/NodeGPT/HEAD/update.py --------------------------------------------------------------------------------