README.md
      
      
        
        # gloq
[](https://hex.pm/packages/gloq)
[](https://hexdocs.pm/gloq/)

> [!Note]
> Library is in its very early stages      
> Feel free to create PR's and Issues
```sh
gleam add gloq
```
```gleam
pub fn main() {
  let key = "abc123"
  let response =
    new_groq_request()
    |> with_key(key)
    |> with_context("Explain the importance of fast language models")
    |> with_user("user")
    |> with_model("llama3-8b-8192")
    |> send()
  io.print(response)
}
```
Further documentation can be found at <https://hex.pm/packages/gloq>.
## Development
```sh
gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell
```