Tore Pettersen
Tore Pettersen
Creating a tensor from a float is causing a problem with the decimals: ``` Nx.tensor(0.43) #Nx.Tensor< f32 0.4300000071525574 > ``` The same goes if type is set to f16: ```...
Addressing issue https://github.com/wojtekmach/req/issues/122 Stole idea from Tesla: https://github.com/elixir-tesla/tesla/blob/master/lib/tesla/middleware/core.ex#L33-L52
In Rust there is a type called `Option` similar to Elm's `Maybe`. Rust let you unwrap the `Option` in a if statment like this: ```rust if let Some(a) = Some(1)...
Hi and tanks for creating this lovley validation library. It seems like it would fit quite nice for validating JSON responses returned from OpenAI and other LLM's. LLM's usually require...
Hi, thanks for creating this nice library :blush: I recently came accros [GroqCloud](https://groq.com/). It seems like an alternative to OpenAI and is powered by open source moduls like Mixtral, Llama2...
Thanks again for this lovely library :blush: Would you consider adding Enum's to this library? Seems like it is a common enough use case that it is suppored for [JSON...
Hi, thanks for creating this nice library 😊 I recently came accros [GroqCloud](https://groq.com/). It seems like an alternative to OpenAI and is powered by open source moduls like Mixtral, Llama3...
### Describe the bug After adding tailwindcss to a brand new project, I get an error when running `pnpm tauri dev`. But works when running `pnpm run dev` and opening...