You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/gpullama3-chat-model.adoc
+61-2Lines changed: 61 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,7 @@ The above steps:
29
29
30
30
- Set the `TORNADOVM_SDK` environment variable to the TornadoVM SDK path.
31
31
- Create a `tornado-argfile` under `~/TornadoVM` containing the JVM arguments required to enable TornadoVM.
32
-
- The `tornado-argfile` is automatically used in Quarkus *dev mode*.
33
-
- For *production mode*, you must manually pass the argfile to the JVM (see step 3).
32
+
- ⚠️ The `tornado-argfile` should be used for *building* and *running* the Quarkus application (see section Building & Running the Quarkus Application).
⚠ **Important:** Ensure `TORNADOVM_SDK` and the `tornado-argfile` path are correctly set.
190
+
191
+
133
192
== Supported Models and Quantizations
134
193
135
194
The following models have been tested with GPULlama3.java and can be found in link:++https://huggingface.co/beehive-lab/collections[Beehive Lab's HuggingFace Collections].
Copy file name to clipboardExpand all lines: model-providers/gpu-llama3/runtime/src/main/java/io/quarkiverse/langchain4j/gpullama3/GPULlama3ChatModel.java
Copy file name to clipboardExpand all lines: model-providers/gpu-llama3/runtime/src/main/java/io/quarkiverse/langchain4j/gpullama3/GPULlama3StreamingChatModel.java
+69-60Lines changed: 69 additions & 60 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,6 @@
7
7
importjava.io.UncheckedIOException;
8
8
importjava.nio.file.Path;
9
9
importjava.util.Optional;
10
-
importjava.util.concurrent.CompletableFuture;
11
-
importjava.util.concurrent.atomic.AtomicBoolean;
12
10
13
11
importorg.jboss.logging.Logger;
14
12
@@ -50,20 +48,68 @@ public class GPULlama3StreamingChatModel extends GPULlama3BaseModel implements S
0 commit comments