Skip to content
Prev Previous commit
Next Next commit
rm unneeded file
  • Loading branch information
gary-huang committed Apr 11, 2025
commit 5e66a2f2544c2790fcb8f4d3b2536b7f43c9b7ea

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,19 @@ public static void start(Instrumentation inst, SharedCommunicationObjects sco) {

sco.createRemaining(config);

LLMObsServices llmObsServices = new LLMObsServices(config, sco);
LLMObsInternal.setLLMObsSpanFactory(
new LLMObsManualSpanFactory(
config.getLlmObsMlApp(), config.getServiceName(), llmObsServices));
config.getLlmObsMlApp(), config.getServiceName()));
}

private static class LLMObsManualSpanFactory implements LLMObs.LLMObsSpanFactory {

private final LLMObsServices llmObsServices;
private final String serviceName;
private final String defaultMLApp;

public LLMObsManualSpanFactory(
String defaultMLApp, String serviceName, LLMObsServices llmObsServices) {
String defaultMLApp, String serviceName) {
this.defaultMLApp = defaultMLApp;
this.llmObsServices = llmObsServices;
this.serviceName = serviceName;
}

Expand Down