Gigi Sayfan
Gigi Sayfan
The [instructios](https://github.com/nuclio/nuclio/blob/master/docs/setup/k8s/getting-started-k8s.md#deploy-a-function-with-the-nuclio-cli-nuctl) say: `Note: If you are using Docker Hub, the URL here includes your username - registry.hub.docker.com/.` But, actually it should be just the username without the "registry.hub.docker.com/" prefix....
**Is your feature request related to a problem? Please describe.** It looks like there is no way to list the models. See https://platform.openai.com/docs/api-reference/models **Describe the solution you'd like** I would...
The ChatCompletionToolChoice forces the model to call a specific tool. let's call it X. There are 3 options: 1. The tools list doesn't contain a tool called X 2. The...
The generated test code invoke sthe function's `main()` entrypoint with an empty dictionary: ```python import unittest func = __import__("func") class TestFunc(unittest.TestCase): def test_func_empty_request(self): resp, code = func.main({}) self.assertEqual(resp, "{}") self.assertEqual(code,...
OpenAI introduced structured outputs where the model's response adheres to a JSON schema. See: - https://openai.com/index/introducing-structured-outputs-in-the-api/ - https://platform.openai.com/docs/guides/structured-outputs This is super useful for building reliable systems.
### Describe what happened When running `pulumi up` it hangs forever when it needs to create or update a `DNS record`. It works fine with a `Zone`. ``` ❯ pulumi...
### Describe what happened This setting is defined here: https://developers.cloudflare.com/waf/tools/replace-insecure-js-libraries/ missing at least from Java and C# implementations of the ZoneSettingsOverrideSettingsArgs class: - [ZoneSettingsOverrideSettingsArgs.java](https://github.com/pulumi/pulumi-cloudflare/blob/a8c35112ea537105b6da008c0c1e7c2c5b70f1c8/sdk/java/src/main/java/com/pulumi/cloudflare/inputs/ZoneSettingsOverrideSettingsArgs.java#L20) - [ZoneSettingsOverrideSettingsArgs.cs](https://github.com/pulumi/pulumi-cloudflare/blob/a8c35112ea537105b6da008c0c1e7c2c5b70f1c8/sdk/dotnet/Inputs/ZoneSettingsOverrideSettingsArgs.cs#L13) ### Sample program N/A...
Hi, Thanks for writing this package. I ran xmlformatter the other day on some XML and it removed an attribute with empty value. This caused a serious problem later because...