Results 30 comments of ncecere

As soon as the api is available I plan to start a terraform provider.

What is the status of this getting merged. just wanted to check

another method I used to get around this problem is below. I allows you to just feed in a list of usernames, I have thought about wrapping this in a...

I was wondering if there has been any movement or change regarding this issue. The organization I work for is also having the same problem when trying to create any...

Would something like below work? ```hcl func DomainControlerComputer(conf *config.ProviderConf) { cmd := fmt.Sprintf("(Get-ADDomainController | Select-Object -first 1).Hostname") conn, err := conf.AcquireWinRMClient() if err != nil { return nil, fmt.Errorf("while acquiring...

Another option would be to select one of the domain controllers and only work with that one server and let natural replication happen. Something like `(Get-ADDomainController | Select-Object -First 1).HostName`...

I am also running into this issue. I spun up a new instance using version [v1.35.4] and still have this issue. my process is. 1. add model via api (/model/new)...

when the issue you starts I can't find anything in the litellm logs, If you have somewhere I should look please let me know and I will. the response/error is...

yes it does @ishaan-jaff , it happens in the non stable tag too. I have tried every version from 1.35.36 - 1.35.38

I am adding the model using this pattern ``` - model_name: SFR-Embedding-Mistral litellm_params: model: openai/Salesforce/SFR-Embedding-Mistral api_key: sk-1234 api_base: http://server.example.com/ model_info: mode: embedding ```