├── .editorconfig ├── .github └── workflows │ ├── release.yml │ └── update-json.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── assets └── mcp-logo-wide.png ├── composer.json ├── convoworks-gpt.php ├── package.json ├── phpunit.xml ├── src └── Convo │ └── Gpt │ ├── Admin │ ├── McpConvoworksManager.php │ ├── SettingsProcessor.php │ ├── SettingsView.php │ └── SettingsViewModel.php │ ├── ContextLengthExceededException.php │ ├── GptApi.php │ ├── GptApiFactory.php │ ├── GptPlugin.php │ ├── IChatFunction.php │ ├── IChatFunctionContainer.php │ ├── IMessages.php │ ├── Mcp │ ├── CommandDispatcher.php │ ├── IMcpSessionStoreInterface.php │ ├── McpFilesystemSessionStore.php │ ├── McpServerCommandRequest.php │ ├── McpServerPlatform.php │ ├── McpServerPublisher.php │ ├── McpSessionManager.php │ ├── McpSessionManagerFactory.php │ ├── SseResponse.php │ ├── StreamHandler.php │ ├── StreamWriter.php │ └── StreamableRestHandler.php │ ├── Pckg │ ├── ChatCompletionElement.php │ ├── ChatCompletionV2Element.php │ ├── ChatFunctionElement.php │ ├── ConversationMessagesElement.php │ ├── EmbeddingsElement.php │ ├── ExternalChatFunctionElement.php │ ├── GptPackageDefinition.json │ ├── GptPackageDefinition.php │ ├── Help │ │ ├── actions-prompt-element.html │ │ ├── chat-completion-element.html │ │ ├── chat-completion-v2-element.html │ │ ├── chat-function-element.html │ │ ├── conversation-messages-element.html │ │ ├── embeddings-element.html │ │ ├── external-chat-function-element.html │ │ ├── group-system-messages-element.html │ │ ├── mcp-processor.html │ │ ├── messages-limiter-element.html │ │ ├── moderation-api-element.html │ │ ├── simple-mcp-prompt-template.html │ │ ├── simple-message-limiter-element.html │ │ ├── system-message-element.html │ │ └── wp-rest-proxy-function.html │ ├── McpServerProcessor.php │ ├── MessagesLimiterElement.php │ ├── ModerationApiElement.php │ ├── SimpleMcpPromptTemplate.php │ ├── SimpleMessagesLimiterElement.php │ ├── SystemMessageElement.php │ ├── SystemMessageGroupElement.php │ ├── WpRestProxyFunction.php │ ├── deep-research-assistant.template.json │ ├── gpt-example-chat.template.json │ ├── gpt-site-admin.template.json │ ├── mcp-server-example.template.json │ └── mcp-server-project.template.json │ ├── PluginContext.php │ ├── RefuseFunctionCallException.php │ ├── Tools │ ├── AbstractRestFunctions.php │ ├── CommentRestFunctions.php │ ├── MediaRestFunctions.php │ ├── PagesRestFunctions.php │ ├── PluginRestFunctions.php │ ├── PostRestFunctions.php │ ├── SettingsRestFunctions.php │ ├── TaxonomyRestFunctions.php │ └── UserRestFunctions.php │ └── Util.php ├── sync-version.js ├── tests ├── ProcessJsonWithConstantsTest.php ├── SummarizeMessagesTest.php └── TruncateToSizeTest.php └── update.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/.github/workflows/update-json.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/README.md -------------------------------------------------------------------------------- /assets/mcp-logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/assets/mcp-logo-wide.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/composer.json -------------------------------------------------------------------------------- /convoworks-gpt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/convoworks-gpt.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Convo/Gpt/Admin/McpConvoworksManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Admin/McpConvoworksManager.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Admin/SettingsProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Admin/SettingsProcessor.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Admin/SettingsView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Admin/SettingsView.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Admin/SettingsViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Admin/SettingsViewModel.php -------------------------------------------------------------------------------- /src/Convo/Gpt/ContextLengthExceededException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/ContextLengthExceededException.php -------------------------------------------------------------------------------- /src/Convo/Gpt/GptApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/GptApi.php -------------------------------------------------------------------------------- /src/Convo/Gpt/GptApiFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/GptApiFactory.php -------------------------------------------------------------------------------- /src/Convo/Gpt/GptPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/GptPlugin.php -------------------------------------------------------------------------------- /src/Convo/Gpt/IChatFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/IChatFunction.php -------------------------------------------------------------------------------- /src/Convo/Gpt/IChatFunctionContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/IChatFunctionContainer.php -------------------------------------------------------------------------------- /src/Convo/Gpt/IMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/IMessages.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/CommandDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/CommandDispatcher.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/IMcpSessionStoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/IMcpSessionStoreInterface.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpFilesystemSessionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpFilesystemSessionStore.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpServerCommandRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpServerCommandRequest.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpServerPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpServerPlatform.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpServerPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpServerPublisher.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpSessionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpSessionManager.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/McpSessionManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/McpSessionManagerFactory.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/SseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/SseResponse.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/StreamHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/StreamHandler.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/StreamWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/StreamWriter.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Mcp/StreamableRestHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Mcp/StreamableRestHandler.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ChatCompletionElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ChatCompletionElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ChatCompletionV2Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ChatCompletionV2Element.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ChatFunctionElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ChatFunctionElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ConversationMessagesElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ConversationMessagesElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/EmbeddingsElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/EmbeddingsElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ExternalChatFunctionElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ExternalChatFunctionElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/GptPackageDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/GptPackageDefinition.json -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/GptPackageDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/GptPackageDefinition.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/actions-prompt-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/actions-prompt-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/chat-completion-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/chat-completion-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/chat-completion-v2-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/chat-completion-v2-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/chat-function-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/chat-function-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/conversation-messages-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/conversation-messages-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/embeddings-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/embeddings-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/external-chat-function-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/external-chat-function-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/group-system-messages-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/group-system-messages-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/mcp-processor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/mcp-processor.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/messages-limiter-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/messages-limiter-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/moderation-api-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/moderation-api-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/simple-mcp-prompt-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/simple-mcp-prompt-template.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/simple-message-limiter-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/simple-message-limiter-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/system-message-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/system-message-element.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/Help/wp-rest-proxy-function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/Help/wp-rest-proxy-function.html -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/McpServerProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/McpServerProcessor.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/MessagesLimiterElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/MessagesLimiterElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/ModerationApiElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/ModerationApiElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/SimpleMcpPromptTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/SimpleMcpPromptTemplate.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/SimpleMessagesLimiterElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/SimpleMessagesLimiterElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/SystemMessageElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/SystemMessageElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/SystemMessageGroupElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/SystemMessageGroupElement.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/WpRestProxyFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/WpRestProxyFunction.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/deep-research-assistant.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/deep-research-assistant.template.json -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/gpt-example-chat.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/gpt-example-chat.template.json -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/gpt-site-admin.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/gpt-site-admin.template.json -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/mcp-server-example.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/mcp-server-example.template.json -------------------------------------------------------------------------------- /src/Convo/Gpt/Pckg/mcp-server-project.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Pckg/mcp-server-project.template.json -------------------------------------------------------------------------------- /src/Convo/Gpt/PluginContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/PluginContext.php -------------------------------------------------------------------------------- /src/Convo/Gpt/RefuseFunctionCallException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/RefuseFunctionCallException.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/AbstractRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/AbstractRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/CommentRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/CommentRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/MediaRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/MediaRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/PagesRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/PagesRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/PluginRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/PluginRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/PostRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/PostRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/SettingsRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/SettingsRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/TaxonomyRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/TaxonomyRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Tools/UserRestFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Tools/UserRestFunctions.php -------------------------------------------------------------------------------- /src/Convo/Gpt/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/src/Convo/Gpt/Util.php -------------------------------------------------------------------------------- /sync-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/sync-version.js -------------------------------------------------------------------------------- /tests/ProcessJsonWithConstantsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/tests/ProcessJsonWithConstantsTest.php -------------------------------------------------------------------------------- /tests/SummarizeMessagesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/tests/SummarizeMessagesTest.php -------------------------------------------------------------------------------- /tests/TruncateToSizeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/tests/TruncateToSizeTest.php -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zef-dev/convoworks-gpt/HEAD/update.json --------------------------------------------------------------------------------