Skip to content

Commit 5e66a2f

Browse files
committed
rm unneeded file
1 parent 76740e9 commit 5e66a2f

File tree

2 files changed

+2
-27
lines changed

2 files changed

+2
-27
lines changed

dd-java-agent/agent-llmobs/src/main/java/datadog/trace/llmobs/LLMObsServices.java

Lines changed: 0 additions & 22 deletions
This file was deleted.

dd-java-agent/agent-llmobs/src/main/java/datadog/trace/llmobs/LLMObsSystem.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,19 @@ public static void start(Instrumentation inst, SharedCommunicationObjects sco) {
2828

2929
sco.createRemaining(config);
3030

31-
LLMObsServices llmObsServices = new LLMObsServices(config, sco);
3231
LLMObsInternal.setLLMObsSpanFactory(
3332
new LLMObsManualSpanFactory(
34-
config.getLlmObsMlApp(), config.getServiceName(), llmObsServices));
33+
config.getLlmObsMlApp(), config.getServiceName()));
3534
}
3635

3736
private static class LLMObsManualSpanFactory implements LLMObs.LLMObsSpanFactory {
3837

39-
private final LLMObsServices llmObsServices;
4038
private final String serviceName;
4139
private final String defaultMLApp;
4240

4341
public LLMObsManualSpanFactory(
44-
String defaultMLApp, String serviceName, LLMObsServices llmObsServices) {
42+
String defaultMLApp, String serviceName) {
4543
this.defaultMLApp = defaultMLApp;
46-
this.llmObsServices = llmObsServices;
4744
this.serviceName = serviceName;
4845
}
4946

0 commit comments

Comments
 (0)