Problem
I’m building an AIP Logic pipeline that processes a PDF and creates a Knowledge Article object. The workflow is:
-
Extract text from a PDF media reference
-
Use an LLM to generate structured fields
(Title, Short Description, Content, Category, Tags, Key Points, Content Type, Entities) -
Generate text embeddings using
text-embedding-ada-002 -
Convert the embedding output to Array
-
Call a Create Knowledge Articles ontology action to write the data to an object
All upstream blocks execute successfully during preview (PDF extraction, LLM output, embedding generation). However, the final Ontology Action fails.
Error
RemoteException: INTERNAL (Default:Internal)
Trace ID: 11896d79c7214279
Error ID: b4d93c5-95df-47fb-a560-f765603daa8b
The failure occurs specifically in the Create Knowledge Articles action block.
In the debugger, the action shows:
Arguments: {}
Even though all fields appear correctly mapped in the Logic block.
Questions
-
What does RemoteException: INTERNAL (Default:Internal) typically indicate for Ontology actions executed from AIP Logic?
-
Is there a way to retrieve more detailed logs using a Trace ID?
-
Are there limitations when writing embedding vectors (Array) to ontology properties via actions?
-
Why might the debugger show Arguments: {} even when inputs are mapped?
Any guidance would be appreciated.


