Skip to content

Commit 43f0729

Browse files
committed
set the number of parallel prompts to 1 by default
1 parent 9931a9e commit 43f0729

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Runtime/LLM.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class LLM : MonoBehaviour
5454

5555
/// <summary>Number of prompts that can be processed in parallel (-1 = auto-detect from clients)</summary>
5656
[Tooltip("Number of prompts that can be processed in parallel (-1 = auto-detect from clients)")]
57-
[LLM, SerializeField] private int _parallelPrompts = -1;
57+
[LLM, SerializeField] private int _parallelPrompts = 1;
5858

5959
/// <summary>Size of the prompt context in tokens (0 = use model's default context size)</summary>
6060
[Tooltip("Size of the prompt context in tokens (0 = use model's default context size)")]

0 commit comments

Comments
 (0)