Skip to content

Commit fcd083e

Browse files
committed
Fixes generating tool invoker projects
1 parent 500d166 commit fcd083e

File tree

3 files changed

+53
-45
lines changed

3 files changed

+53
-45
lines changed

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/java/InvocationService.java

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
@GrpcService
4040
public class InvocationService implements ToolInvoker, Inquirer {
41+
private static final Logger LOG = Logger.getLogger(InvocationService.class);
4142

4243
@Inject
4344
InvocationDelegate delegate;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
package ai.wanaku.routing.service;
2+
3+
import java.util.Map;
4+
5+
import jakarta.enterprise.context.ApplicationScoped;
6+
7+
import ai.wanaku.core.exchange.ParsedToolInvokeRequest;
8+
import ai.wanaku.core.exchange.ToolInvokeRequest;
9+
import ai.wanaku.core.services.routing.Client;
10+
import org.apache.camel.CamelContext;
11+
import org.apache.camel.ProducerTemplate;
12+
import org.jboss.logging.Logger;
13+
14+
@ApplicationScoped
15+
public class ${name}Client implements Client {
16+
private static final Logger LOG = Logger.getLogger(${name}Client.class);
17+
18+
private final ProducerTemplate producer;
19+
20+
public ${name}Client(CamelContext camelContext) {
21+
this.producer = camelContext.createProducerTemplate();
22+
23+
// Also create the consumer here, if needed
24+
}
25+
26+
@Override
27+
public Object exchange(ToolInvokeRequest request) {
28+
producer.start();
29+
30+
ParsedToolInvokeRequest parsedRequest = ParsedToolInvokeRequest.parseRequest(request);
31+
32+
LOG.infof("Invoking tool at URI: %s", parsedRequest.uri());
33+
34+
String s;
35+
if (parsedRequest.body().isEmpty()) {
36+
s = producer.requestBody(parsedRequest.uri(), null, String.class);
37+
} else {
38+
s = producer.requestBody(parsedRequest.uri(), parsedRequest.body(), String.class);
39+
}
40+
return s;
41+
}
42+
}

archetypes/wanaku-tool-service-archetype/src/main/resources/archetype-resources/src/main/java/__name__Delegate.java

+10-45
Original file line numberDiff line numberDiff line change
@@ -21,56 +21,21 @@
2121

2222
import jakarta.enterprise.context.ApplicationScoped;
2323

24-
import ai.wanaku.core.exchange.InvocationDelegate;
25-
import ai.wanaku.core.exchange.ParsedToolInvokeRequest;
26-
import ai.wanaku.core.exchange.ToolInvokeReply;
27-
import ai.wanaku.core.exchange.ToolInvokeRequest;
28-
import ai.wanaku.core.services.config.WanakuServiceConfig;
29-
import org.apache.camel.CamelContext;
30-
import org.apache.camel.ProducerTemplate;
31-
import org.jboss.logging.Logger;
24+
import ai.wanaku.api.exceptions.InvalidResponseTypeException;
25+
import ai.wanaku.api.exceptions.NonConvertableResponseException;
26+
import ai.wanaku.core.services.routing.AbstractRoutingDelegate;
3227

33-
@ApplicationScoped
34-
public class ${name}Delegate implements InvocationDelegate {
35-
private static final Logger LOG = Logger.getLogger(${name}Delegate.class);
36-
37-
@Inject
38-
WanakuServiceConfig config;
3928

40-
private final CamelContext camelContext;
41-
private final ProducerTemplate producer;
42-
43-
public ${name}Delegate(CamelContext camelContext) {
44-
this.camelContext = camelContext;
45-
this.producer = camelContext.createProducerTemplate();
46-
}
29+
@ApplicationScoped
30+
public class ${name}Delegate extends AbstractRoutingDelegate {
4731

4832
@Override
49-
public ToolInvokeReply invoke(ToolInvokeRequest request) {
50-
try {
51-
producer.start();
52-
53-
ParsedToolInvokeRequest parsedRequest = ParsedToolInvokeRequest.parseRequest(request);
54-
55-
LOG.infof("Invoking tool at URI: %s", parsedRequest.uri());
56-
String s = producer.requestBody(parsedRequest.uri(), parsedRequest.body(), String.class);
57-
58-
return ToolInvokeReply.newBuilder().setContent(s).setIsError(false).build();
59-
} catch (Exception e) {
60-
LOG.errorf("Unable to call endpoint: %s", e.getMessage(), e);
61-
return ToolInvokeReply.newBuilder().setContent(e.getMessage()).setIsError(true).build();
62-
} finally {
63-
producer.stop();
33+
protected String coerceResponse(Object response) throws InvalidResponseTypeException, NonConvertableResponseException {
34+
if (response == null) {
35+
throw new InvalidResponseTypeException("Invalid response type from the consumer: null");
6436
}
65-
}
66-
67-
@Override
68-
public Map<String, String> serviceConfigurations() {
69-
return config.routing().service().configurations();
70-
}
7137

72-
@Override
73-
public Map<String, String> credentialsConfigurations() {
74-
return config.routing().credentials().configurations();
38+
// Here, convert the response from whatever format it is, to a String instance.
39+
return null;
7540
}
7641
}

0 commit comments

Comments
 (0)