File tree 2 files changed +1
-3
lines changed
src/main/java/com/openlayer/api/example
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ examples.forEach { example ->
15
15
group = " Examples"
16
16
description = " Run $example "
17
17
classpath = sourceSets.getByName(" main" ).runtimeClasspath
18
- mainClass.set(" com.langsmith .example.$example " )
18
+ mainClass.set(" com.openlayer.api .example.$example " )
19
19
}
20
20
}
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ public static void main(String[] args) {
35
35
.putAdditionalProperty ("output" , JsonString .of ("42" ))
36
36
.putAdditionalProperty ("tokens" , JsonNumber .of (7 ))
37
37
.putAdditionalProperty ("cost" , JsonNumber .of (0.02 ))
38
- .putAdditionalProperty ("timestamp" , JsonNumber .of (1620000000 ))
39
38
.build ();
40
39
41
40
// Create Inference Pipeline Data Stream Parameters
@@ -48,7 +47,6 @@ public static void main(String[] args) {
48
47
.costColumnName ("cost" )
49
48
.inputVariableNames (Arrays .asList ("user_query" ))
50
49
.numOfTokenColumnName ("tokens" )
51
- .timestampColumnName ("timestamp" )
52
50
.build ()))
53
51
.build ();
54
52
You can’t perform that action at this time.
0 commit comments