Chris Hua

Results 8 comments of Chris Hua

note: the first commit only runs black. you can compare the changes more thoroughly in https://github.com/akmittal/Hugofy-sublime/compare/c0b6e42f5616e5f9a1c900ae74f0c3061995be72..dffd5f166ed3aa88c08d23fe6cbffd2fe9c410b5 also, you may want to resubmit to package control, the current live version is...

run `brew install vips` to install vips binaries, then the commands worked for me

This returns 401 for me, but the request URL appears to be properly formed. Canvas documentation: https://canvas.instructure.com/doc/api/users.html#method.page_views.index

``` { "id": "modr-something", "model": "text-moderation-006", "results": [ { "flagged": false, "categories": { "sexual": false, "hate": false, "harassment": false, "self-harm": false, "sexual/minors": false, "hate/threatening": false, "violence/graphic": false, "self-harm/intent": false, "self-harm/instructions":...

seems fair! compatibility on this endpoint seems to be 'best effort' from their side anyways, enforcing that callers be careful about ensuring that the field they want exists in the...

Hey, we've tried internally and have struggled to find a setup that is consistently reproducible, unfortunately. Locally, clearing cache seems to help, though this isn't a solution for CI -...

thanks - I think it's easiest to reproduce/test in CI when the new release lands in golangci-lint, and it looks like the new version was picked up: https://github.com/golangci/golangci-lint/commit/db4955a3bb7e72c42350412c15ae20bd959afe44. once golangci-lint...

Many commercial providers work out of the box with the OpenAI library though. For example: ``` mixtral = dspy.OpenAI( model="mistralai/Mixtral-8x7B-Instruct-v0.1", max_tokens=250, model_type="chat", api_key=os.environ["TOGETHER_API_KEY"], api_base="https://api.together.xyz/v1", ) dspy.settings.configure(lm=mixtral) ```