aboutsummaryrefslogtreecommitdiffstats
path: root/model-integration/src/main
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@vespa.ai>2023-04-20 13:35:07 +0200
committerJon Bratseth <bratseth@vespa.ai>2023-04-20 13:35:07 +0200
commit29771cba3c234cf6f1661ce80d6038eebdb7892a (patch)
tree77a3be449ad5601296c6cc52bbbafe3bdff3c6ae /model-integration/src/main
parentf88bd3be35b35140a98dc3ba888e615d1dd5baa6 (diff)
Export API
Diffstat (limited to 'model-integration/src/main')
-rw-r--r--model-integration/src/main/java/ai/vespa/llm/client/package-info.java11
-rw-r--r--model-integration/src/main/java/ai/vespa/llm/package-info.java11
-rw-r--r--model-integration/src/main/java/ai/vespa/llm/test/package-info.java11
3 files changed, 33 insertions, 0 deletions
diff --git a/model-integration/src/main/java/ai/vespa/llm/client/package-info.java b/model-integration/src/main/java/ai/vespa/llm/client/package-info.java
new file mode 100644
index 00000000000..c95f87eec3c
--- /dev/null
+++ b/model-integration/src/main/java/ai/vespa/llm/client/package-info.java
@@ -0,0 +1,11 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+@ExportPackage
+@PublicApi
+package ai.vespa.llm.client;
+
+import com.yahoo.api.annotations.PublicApi;
+import com.yahoo.osgi.annotation.ExportPackage;
+
+/**
+ * Clients to externally hosted large language models.
+ */ \ No newline at end of file
diff --git a/model-integration/src/main/java/ai/vespa/llm/package-info.java b/model-integration/src/main/java/ai/vespa/llm/package-info.java
new file mode 100644
index 00000000000..04fc24c51ee
--- /dev/null
+++ b/model-integration/src/main/java/ai/vespa/llm/package-info.java
@@ -0,0 +1,11 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+@ExportPackage
+@PublicApi
+package ai.vespa.llm;
+
+import com.yahoo.api.annotations.PublicApi;
+import com.yahoo.osgi.annotation.ExportPackage;
+
+/**
+ * API for working with large language models.
+ */ \ No newline at end of file
diff --git a/model-integration/src/main/java/ai/vespa/llm/test/package-info.java b/model-integration/src/main/java/ai/vespa/llm/test/package-info.java
new file mode 100644
index 00000000000..0d51815fd6d
--- /dev/null
+++ b/model-integration/src/main/java/ai/vespa/llm/test/package-info.java
@@ -0,0 +1,11 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+@ExportPackage
+@PublicApi
+package ai.vespa.llm.test;
+
+/**
+ * Tools for writing tests when working with large language models.
+ */
+
+import com.yahoo.api.annotations.PublicApi;
+import com.yahoo.osgi.annotation.ExportPackage; \ No newline at end of file