We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366aad3 commit e731c8dCopy full SHA for e731c8d
mcp/runtime/src/main/java/io/quarkiverse/langchain4j/mcp/runtime/config/McpClientRuntimeConfig.java
@@ -48,14 +48,16 @@ public interface McpClientRuntimeConfig {
48
/**
49
* Timeout for tool executions performed by the MCP client
50
*/
51
- @WithDefault("60s")
+ @WithDefault("${quarkus.langchain4j.timeout:60s}")
52
+ @ConfigDocDefault("60s")
53
Duration toolExecutionTimeout();
54
55
56
* Timeout for resource-related operations (retrieving a list of resources as well as
57
* the actual contents of resources).
58
59
60
61
Duration resourcesTimeout();
62
63
0 commit comments