Gigi Sayfan

Results 22 comments of Gigi Sayfan

The root certificate in the base imge (golang:1.11) is too old. See https://github.com/go-yaml/yaml/issues/787 Need to: `apt-get --allow-releaseinfo-change update && apt upgrade -y` Unfortunately, the Kubernetes ecosystem is moving very fast...

I did a major update of Delinkcious (Go 1.11 -> Go 1.17, switch to Go modules and more). All unit tests pass and all Docker images can be built again.

Hi all, is this PR being reviewed? will it be merged soon? I have a project that uses it to access the OpenAI-compatible Anyscale (anyscale.com). Regular chat completion works just...

Does it mean that the webhooks will not be invoked for DELETE operations (unless there is an explicit DELETE operation in a rule) or the webhook will still be invoked...

> > The logic of the new method `functions(toolChoice)` would be: > > * If the `toolChoice` is ToolChoiceOption.NONE, then it returns an empty list of tools. > * If...

@sashirestela No concern. It keeps the API the same, so users are not impacted and the FunctionExecutor encapsulates the logic of pruning the tools according to the user's tool choice....

The path is `/G:/Code/simple-openai/src/demo/resources/mistral-ai.txt` is invalid on Windows. There should be no slash before the drive letter. Try just `G:/Code/simple-openai/src/demo/resources/mistral-ai.txt`

A separate but related capability is retries (or failover) with a different instances. For example, if gpt-4 has problems you can failover to got-3.5, or if OpenAI has problems retry...

Sending N functions every time over the network to a REST API when you know for sure that you want to force calling just one specific function (or even not...