1. 31 Jan, 2023 1 commit
    • OlivierDehaene's avatar
      feat: Add token streaming using ServerSideEvents support (#36) · 7fbfbb0d
      OlivierDehaene authored
      Add token streaming using ServerSideEvents (SSE).
      
      The signature of the SSE events is: 
      
      ```rust
      struct Details {
          finish_reason: String,
          generated_tokens: u32,
          seed: Option<u64>,
      }
      
      struct StreamResponse {
          token: Token,
          generated_text: Option<String>,
          details: Option<Details>,
      }
      
      struct ErrorResponse {
          error: String,
      }
      ```
      7fbfbb0d
  2. 30 Jan, 2023 1 commit
  3. 26 Jan, 2023 1 commit
  4. 20 Jan, 2023 2 commits
  5. 17 Jan, 2023 1 commit
  6. 05 Jan, 2023 1 commit
  7. 03 Jan, 2023 1 commit
  8. 30 Dec, 2022 1 commit
  9. 16 Dec, 2022 1 commit
  10. 15 Dec, 2022 1 commit
  11. 12 Dec, 2022 1 commit
  12. 08 Dec, 2022 2 commits
  13. 05 Dec, 2022 1 commit
  14. 01 Dec, 2022 1 commit
  15. 09 Nov, 2022 1 commit
  16. 08 Nov, 2022 1 commit
  17. 07 Nov, 2022 1 commit
  18. 04 Nov, 2022 2 commits
  19. 03 Nov, 2022 1 commit
  20. 02 Nov, 2022 1 commit
  21. 28 Oct, 2022 1 commit