├── .github └── FUNDING.yml ├── .gitignore ├── Config └── DefaultGenerativeAISupport.ini ├── Content ├── ExampleBlueprints │ └── ChatAPIExamples.uasset └── Python │ ├── __pycache__ │ ├── plugin_settings.cpython-311.pyc │ └── unreal_socket_server.cpython-311.pyc │ ├── handlers │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── actor_commands.cpython-311.pyc │ │ ├── basic_commands.cpython-311.pyc │ │ ├── blueprint_commands.cpython-311.pyc │ │ ├── python_commands.cpython-311.pyc │ │ └── ui_commands.cpython-311.pyc │ ├── actor_commands.py │ ├── base_handler.py │ ├── basic_commands.py │ ├── blueprint_commands.py │ ├── python_commands.py │ └── ui_commands.py │ ├── init_unreal.py │ ├── knowledge_base │ └── how_to_use.md │ ├── mcp_server.py │ ├── mss │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-313.pyc │ │ ├── base.cpython-311.pyc │ │ ├── base.cpython-313.pyc │ │ ├── exception.cpython-311.pyc │ │ ├── exception.cpython-313.pyc │ │ ├── factory.cpython-311.pyc │ │ ├── factory.cpython-313.pyc │ │ ├── models.cpython-311.pyc │ │ ├── models.cpython-313.pyc │ │ ├── screenshot.cpython-311.pyc │ │ ├── screenshot.cpython-313.pyc │ │ ├── tools.cpython-311.pyc │ │ ├── tools.cpython-313.pyc │ │ └── windows.cpython-313.pyc │ ├── base.py │ ├── darwin.py │ ├── exception.py │ ├── factory.py │ ├── linux.py │ ├── models.py │ ├── py.typed │ ├── screenshot.py │ ├── tools.py │ └── windows.py │ ├── socket_server_config.json │ ├── unreal_socket_server.py │ └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── logging.cpython-311.pyc │ └── unreal_conversions.cpython-311.pyc │ ├── logging.py │ └── unreal_conversions.py ├── Docs ├── BHDemoGif.gif ├── BpExampleClaudeChat.png ├── BpExampleDeepseekChat.png ├── BpExampleOAIChat.png ├── BpExampleOAIStructuredOp.png ├── EditorWindow.png ├── Repo Card - UnrealGenAISupport.png ├── Repo Card - Updated.png ├── Settings.png └── UnrealMcpDemo.gif ├── Examples └── Schemas │ └── GenericExampleSchema.json ├── GenerativeAISupport.uplugin ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source ├── GenerativeAISupport ├── GenerativeAISupport.Build.cs ├── Private │ ├── Data │ │ ├── Anthropic │ │ │ └── GenClaudeChatStructs.cpp │ │ ├── GenAIOrgs.cpp │ │ └── OpenAI │ │ │ └── GenOAIChatStructs.cpp │ ├── GenerativeAISupport.cpp │ ├── Models │ │ ├── Anthropic │ │ │ └── GenClaudeChat.cpp │ │ ├── DeepSeek │ │ │ └── GenDSeekChat.cpp │ │ ├── OpenAI │ │ │ ├── GenOAIChat.cpp │ │ │ └── GenOAIStructuredOpService.cpp │ │ └── XAI │ │ │ └── GenXAIChat.cpp │ ├── Secure │ │ └── GenSecureKey.cpp │ └── Utilities │ │ ├── GenGlobalDefinitions.cpp │ │ └── GenUtils.cpp └── Public │ ├── Data │ ├── Anthropic │ │ └── GenClaudeChatStructs.h │ ├── GenAIOrgs.h │ ├── OpenAI │ │ ├── GenOAIChatStructs.h │ │ └── GenOAIModels.h │ └── XAI │ │ └── GenXAIChatStructs.h │ ├── GenerativeAISupport.h │ ├── Models │ ├── Anthropic │ │ └── GenClaudeChat.h │ ├── DeepSeek │ │ └── GenDSeekChat.h │ ├── OpenAI │ │ ├── GenOAIChat.h │ │ └── GenOAIStructuredOpService.h │ └── XAI │ │ └── GenXAIChat.h │ ├── Secure │ └── GenSecureKey.h │ └── Utilities │ ├── GenGlobalDefinitions.h │ └── GenUtils.h └── GenerativeAISupportEditor ├── GenerativeAISupportEditor.Build.cs ├── Private ├── Editor │ ├── GenEditorCommands.cpp │ └── GenEditorWindow.cpp ├── GenerativeAISupportEditor.cpp ├── GenerativeAISupportSettings.cpp └── MCP │ ├── GenActorUtils.cpp │ ├── GenBlueprintNodeCreator.cpp │ ├── GenBlueprintUtils.cpp │ ├── GenObjectProperties.cpp │ └── GenWidgetUtils.cpp └── Public ├── Editor ├── GenEditorCommands.h └── GenEditorWindow.h ├── GenerativeAISupportEditor.h ├── GenerativeAISupportSettings.h └── MCP ├── GenActorUtils.h ├── GenBlueprintNodeCreator.h ├── GenBlueprintUtils.h ├── GenObjectProperties.h └── GenWidgetUtils.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/DefaultGenerativeAISupport.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Config/DefaultGenerativeAISupport.ini -------------------------------------------------------------------------------- /Content/ExampleBlueprints/ChatAPIExamples.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/ExampleBlueprints/ChatAPIExamples.uasset -------------------------------------------------------------------------------- /Content/Python/__pycache__/plugin_settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/__pycache__/plugin_settings.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/__pycache__/unreal_socket_server.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/__pycache__/unreal_socket_server.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | # handlers package -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/actor_commands.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/actor_commands.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/basic_commands.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/basic_commands.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/blueprint_commands.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/blueprint_commands.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/python_commands.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/python_commands.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/__pycache__/ui_commands.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/__pycache__/ui_commands.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/handlers/actor_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/actor_commands.py -------------------------------------------------------------------------------- /Content/Python/handlers/base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/base_handler.py -------------------------------------------------------------------------------- /Content/Python/handlers/basic_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/basic_commands.py -------------------------------------------------------------------------------- /Content/Python/handlers/blueprint_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/blueprint_commands.py -------------------------------------------------------------------------------- /Content/Python/handlers/python_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/python_commands.py -------------------------------------------------------------------------------- /Content/Python/handlers/ui_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/handlers/ui_commands.py -------------------------------------------------------------------------------- /Content/Python/init_unreal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/init_unreal.py -------------------------------------------------------------------------------- /Content/Python/knowledge_base/how_to_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/knowledge_base/how_to_use.md -------------------------------------------------------------------------------- /Content/Python/mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mcp_server.py -------------------------------------------------------------------------------- /Content/Python/mss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__init__.py -------------------------------------------------------------------------------- /Content/Python/mss/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__main__.py -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/base.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/base.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/base.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/base.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/exception.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/exception.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/exception.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/exception.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/factory.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/factory.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/factory.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/models.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/models.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/screenshot.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/screenshot.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/screenshot.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/screenshot.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/tools.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/tools.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/tools.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/tools.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/__pycache__/windows.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/__pycache__/windows.cpython-313.pyc -------------------------------------------------------------------------------- /Content/Python/mss/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/base.py -------------------------------------------------------------------------------- /Content/Python/mss/darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/darwin.py -------------------------------------------------------------------------------- /Content/Python/mss/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/exception.py -------------------------------------------------------------------------------- /Content/Python/mss/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/factory.py -------------------------------------------------------------------------------- /Content/Python/mss/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/linux.py -------------------------------------------------------------------------------- /Content/Python/mss/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/models.py -------------------------------------------------------------------------------- /Content/Python/mss/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Content/Python/mss/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/screenshot.py -------------------------------------------------------------------------------- /Content/Python/mss/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/tools.py -------------------------------------------------------------------------------- /Content/Python/mss/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/mss/windows.py -------------------------------------------------------------------------------- /Content/Python/socket_server_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "auto_start_socket_server": false 3 | } -------------------------------------------------------------------------------- /Content/Python/unreal_socket_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/unreal_socket_server.py -------------------------------------------------------------------------------- /Content/Python/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # utils package -------------------------------------------------------------------------------- /Content/Python/utils/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/utils/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/utils/__pycache__/logging.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/utils/__pycache__/logging.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/utils/__pycache__/unreal_conversions.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/utils/__pycache__/unreal_conversions.cpython-311.pyc -------------------------------------------------------------------------------- /Content/Python/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/utils/logging.py -------------------------------------------------------------------------------- /Content/Python/utils/unreal_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Content/Python/utils/unreal_conversions.py -------------------------------------------------------------------------------- /Docs/BHDemoGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/BHDemoGif.gif -------------------------------------------------------------------------------- /Docs/BpExampleClaudeChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/BpExampleClaudeChat.png -------------------------------------------------------------------------------- /Docs/BpExampleDeepseekChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/BpExampleDeepseekChat.png -------------------------------------------------------------------------------- /Docs/BpExampleOAIChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/BpExampleOAIChat.png -------------------------------------------------------------------------------- /Docs/BpExampleOAIStructuredOp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/BpExampleOAIStructuredOp.png -------------------------------------------------------------------------------- /Docs/EditorWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/EditorWindow.png -------------------------------------------------------------------------------- /Docs/Repo Card - UnrealGenAISupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/Repo Card - UnrealGenAISupport.png -------------------------------------------------------------------------------- /Docs/Repo Card - Updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/Repo Card - Updated.png -------------------------------------------------------------------------------- /Docs/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/Settings.png -------------------------------------------------------------------------------- /Docs/UnrealMcpDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Docs/UnrealMcpDemo.gif -------------------------------------------------------------------------------- /Examples/Schemas/GenericExampleSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Examples/Schemas/GenericExampleSchema.json -------------------------------------------------------------------------------- /GenerativeAISupport.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/GenerativeAISupport.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/GenerativeAISupport/GenerativeAISupport.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/GenerativeAISupport.Build.cs -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Data/Anthropic/GenClaudeChatStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Data/Anthropic/GenClaudeChatStructs.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Data/GenAIOrgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Data/GenAIOrgs.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Data/OpenAI/GenOAIChatStructs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Data/OpenAI/GenOAIChatStructs.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/GenerativeAISupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/GenerativeAISupport.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Models/Anthropic/GenClaudeChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Models/Anthropic/GenClaudeChat.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Models/DeepSeek/GenDSeekChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Models/DeepSeek/GenDSeekChat.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Models/OpenAI/GenOAIChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Models/OpenAI/GenOAIChat.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Models/OpenAI/GenOAIStructuredOpService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Models/OpenAI/GenOAIStructuredOpService.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Models/XAI/GenXAIChat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Models/XAI/GenXAIChat.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Secure/GenSecureKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Secure/GenSecureKey.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Utilities/GenGlobalDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Utilities/GenGlobalDefinitions.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Private/Utilities/GenUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Private/Utilities/GenUtils.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Data/Anthropic/GenClaudeChatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Data/Anthropic/GenClaudeChatStructs.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Data/GenAIOrgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Data/GenAIOrgs.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Data/OpenAI/GenOAIChatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Data/OpenAI/GenOAIChatStructs.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Data/OpenAI/GenOAIModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Data/OpenAI/GenOAIModels.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Data/XAI/GenXAIChatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Data/XAI/GenXAIChatStructs.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/GenerativeAISupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/GenerativeAISupport.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Models/Anthropic/GenClaudeChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Models/Anthropic/GenClaudeChat.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Models/DeepSeek/GenDSeekChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Models/DeepSeek/GenDSeekChat.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Models/OpenAI/GenOAIChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Models/OpenAI/GenOAIChat.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Models/OpenAI/GenOAIStructuredOpService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Models/OpenAI/GenOAIStructuredOpService.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Models/XAI/GenXAIChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Models/XAI/GenXAIChat.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Secure/GenSecureKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Secure/GenSecureKey.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Utilities/GenGlobalDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Utilities/GenGlobalDefinitions.h -------------------------------------------------------------------------------- /Source/GenerativeAISupport/Public/Utilities/GenUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupport/Public/Utilities/GenUtils.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/GenerativeAISupportEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/GenerativeAISupportEditor.Build.cs -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/Editor/GenEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/Editor/GenEditorCommands.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/Editor/GenEditorWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/Editor/GenEditorWindow.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/GenerativeAISupportEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/GenerativeAISupportEditor.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/GenerativeAISupportSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/GenerativeAISupportSettings.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/MCP/GenActorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/MCP/GenActorUtils.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/MCP/GenBlueprintNodeCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/MCP/GenBlueprintNodeCreator.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/MCP/GenBlueprintUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/MCP/GenBlueprintUtils.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/MCP/GenObjectProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/MCP/GenObjectProperties.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Private/MCP/GenWidgetUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Private/MCP/GenWidgetUtils.cpp -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/Editor/GenEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/Editor/GenEditorCommands.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/Editor/GenEditorWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/Editor/GenEditorWindow.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/GenerativeAISupportEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/GenerativeAISupportEditor.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/GenerativeAISupportSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/GenerativeAISupportSettings.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/MCP/GenActorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/MCP/GenActorUtils.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/MCP/GenBlueprintNodeCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/MCP/GenBlueprintNodeCreator.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/MCP/GenBlueprintUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/MCP/GenBlueprintUtils.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/MCP/GenObjectProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/MCP/GenObjectProperties.h -------------------------------------------------------------------------------- /Source/GenerativeAISupportEditor/Public/MCP/GenWidgetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajwalshettydev/UnrealGenAISupport/HEAD/Source/GenerativeAISupportEditor/Public/MCP/GenWidgetUtils.h --------------------------------------------------------------------------------