|
21 | 21 |
|
22 | 22 | import jakarta.enterprise.context.ApplicationScoped;
|
23 | 23 |
|
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; |
32 | 27 |
|
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; |
39 | 28 |
|
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 { |
47 | 31 |
|
48 | 32 | @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"); |
64 | 36 | }
|
65 |
| - } |
66 |
| - |
67 |
| - @Override |
68 |
| - public Map<String, String> serviceConfigurations() { |
69 |
| - return config.routing().service().configurations(); |
70 |
| - } |
71 | 37 |
|
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; |
75 | 40 | }
|
76 | 41 | }
|
0 commit comments