Browse Source

Merge pull request #219 from martindevans/fix/broken_text_decoding

Fixed Broken Text Decoding
tags/v0.7.0
Martin Evans GitHub 2 years ago
parent
commit
666455d144
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      LLama/LLamaContext.cs

+ 1
- 1
LLama/LLamaContext.cs View File

@@ -110,7 +110,7 @@ namespace LLama

var decoder = new StreamingTokenDecoder(this);
decoder.AddRange(tokens);
return decoder.ToString();
return decoder.Read();
}

/// <summary>


Loading…
Cancel
Save