Shane Witbeck
Shane Witbeck
If `serde_json` is to be an optional dependency, then how shall I organize the added support for `serde_json::Value`? I'm somewhat new to Rust, so providing as much detail as possible...
@skorfmann Would this enable using a module such as the following? ``` module "api_gateway_cors_proxy" { source = "github.com/kyeotic/terraform-api-gateway-cors-module.git?ref=1.1" resource_id = aws_api_gateway_resource.proxy.id rest_api_id = aws_api_gateway_rest_api.rest_api.id } ``` I'm trying to determine...
If this is a "normal" service exception would it make sense to log a friendlier message without a stack trace?
As a workaround, I've found [yq](https://mikefarah.gitbook.io/yq/) to be helpful in certain cases. You can use `yq r - -j` to read stdin and convert to JSON before piping to `gron`
I understand what you're saying but I find it strange that you wouldn't include Helix, which is extensible via Rust, if you've already included vim/neovim. In any case, thanks for...
@alexellis Would you mind merging?
I'm happy to add this once there's CI. Is the plan to use GitHub Actions or something else?
Taking a quick look at a response from Groq using curl it appears the response object is a little different from the `ChatCompletion` [response](https://github.com/spring-projects/spring-ai/blob/1196ef2f71a8f036c9f5fd3b1cdc364eafd67ea1/models/spring-ai-openai/src/main/java/org/springframework/ai/openai/api/OpenAiApi.java#L607). Here's an example response from Groq:...
No. Although, I didn't look to see how easy it would be to override the response. Otherwise, it may be necessary to explicitly add support for Groq.
Thanks for reply. If you're not already using it, KotlinPoet is good for code generation. I look forward to seeing more. On Tue, Apr 9, 2019 at 5:12 PM yjzhang...