Skip to content

Commit 8e505f7

Browse files
README: mention programmatic plugin setup for optional integrations
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7e7e5ad commit 8e505f7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

temporal-spring-ai/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,18 @@ Auto-detected and executed as Nexus operations, similar to activity stubs.
9494

9595
## Optional Integrations
9696

97-
These are auto-configured when their dependencies are on the classpath:
97+
Auto-configured when their dependencies are on the classpath:
9898

9999
| Feature | Dependency | What it registers |
100100
|---|---|---|
101101
| Vector Store | `spring-ai-rag` | `VectorStoreActivity` |
102102
| Embeddings | `spring-ai-rag` | `EmbeddingModelActivity` |
103103
| MCP | `spring-ai-mcp` | `McpClientActivity` |
104+
105+
These can also be set up programmatically without auto-configuration:
106+
107+
```java
108+
new VectorStorePlugin(vectorStore)
109+
new EmbeddingModelPlugin(embeddingModel)
110+
new McpPlugin()
111+
```

0 commit comments

Comments
 (0)