diff --git a/editors/demo/src/HHMI/config/config.js b/editors/demo/src/HHMI/config/config.js
index 51441eab0db7264344c129c0faeedf57b3c9c1c2..2d3edda9e2bb2df0c4be3a61b24ec3a11e62a0ac 100644
--- a/editors/demo/src/HHMI/config/config.js
+++ b/editors/demo/src/HHMI/config/config.js
@@ -29,7 +29,7 @@ import { DefaultSchema } from 'wax-prosemirror-core';
 import invisibles, { hardBreak } from '@guardian/prosemirror-invisibles';
 const API_KEY = '';
 
-async function AnyStyleTransformation(prompt) {
+async function ExternalAPIContentTransformation(prompt) {
   const response = await fetch('https://api.openai.com/v1/chat/completions', {
     method: 'POST',
     headers: {
@@ -62,7 +62,7 @@ async function AnyStyleTransformation(prompt) {
   return prompt;
 }
 
-// async function AnyStyleTransformation(prompt) {
+// async function ExternalAPIContentTransformation(prompt) {
 //   const response = await fetch('https://api.openai.com/v1/completions', {
 //     method: 'POST',
 //     headers: {
@@ -126,7 +126,7 @@ export default {
     },
   ],
   AnyStyleService: {
-    AnyStyleTransformation: AnyStyleTransformation,
+    ExternalAPIContentTransformation: ExternalAPIContentTransformation,
   },
 
   SchemaService: DefaultSchema,
diff --git a/wax-prosemirror-services/src/AnyStyleService/AnyStyleTool.js b/wax-prosemirror-services/src/AnyStyleService/AnyStyleTool.js
index d070dd0cf56eeaf6c1636d4184aaca26fd147f12..619646470d017d59422b1e7455e0611fbb88ef4f 100644
--- a/wax-prosemirror-services/src/AnyStyleService/AnyStyleTool.js
+++ b/wax-prosemirror-services/src/AnyStyleService/AnyStyleTool.js
@@ -31,7 +31,8 @@ class AnyStyleTool extends Tools {
     const context = useContext(WaxContext);
     const anyStyle = replaceText(
       view,
-      this.config.get('config.AnyStyleService').AnyStyleTransformation,
+      this.config.get('config.AnyStyleService')
+        .ExternalAPIContentTransformation,
       this.pmplugins.get('anyStylePlaceHolder'),
       context,
     );
diff --git a/wax-prosemirror-services/src/AnyStyleService/replaceText.js b/wax-prosemirror-services/src/AnyStyleService/replaceText.js
index 20b258fdd573516b78712a53a939f0156aec3770..e54ae8af27d70ae3fc759af87609544a4e2fe8a2 100644
--- a/wax-prosemirror-services/src/AnyStyleService/replaceText.js
+++ b/wax-prosemirror-services/src/AnyStyleService/replaceText.js
@@ -15,7 +15,7 @@ const elementFromString = string => {
 
 export default (
   view,
-  AnyStyleTransformation,
+  ExternalAPIContentTransformation,
   placeholderPlugin,
   context,
 ) => data => {
@@ -33,7 +33,7 @@ export default (
 
   view.dispatch(tr);
 
-  AnyStyleTransformation(data).then(
+  ExternalAPIContentTransformation(data).then(
     text => {
       const pos = findPlaceholder(view.state, id, placeholderPlugin);
       // If the content around the placeholder has been deleted, drop