Represents the execution context for ontology operations.
The context provides necessary dependencies and configuration for performing operations on the ontology, such as the embedding model for semantic calculations.
const context: Context = { embeddingModel: openai.embedding("text-embedding-3-small")}; Copy
const context: Context = { embeddingModel: openai.embedding("text-embedding-3-small")};
The embedding model used for generating vector embeddings
Represents the execution context for ontology operations.
The context provides necessary dependencies and configuration for performing operations on the ontology, such as the embedding model for semantic calculations.
Example