faculty icon indicating copy to clipboard operation
faculty copied to clipboard

A Python library for interacting with the Faculty platform

Results 16 faculty issues
Sort by recently updated
recently updated
newest added

The readme's https://faculty.ai/products-services/platform/ link is broken, and thus it should be likely updated.

As the API client is doing now, use the more up to date and Python built in `dataclassess` where needed. _Originally posted by @acroz in https://github.com/facultyai/faculty/pull/197#discussion_r784816133_

Since the dependency list do not limit the `marshmallow` version, it is likely prudent to fix the multitude of `RemovedInMarshmallow4Warning` results that the tests are throwing. Most of them are...

The project seems to be abandoned (no change since 2019), and has potential to break things in the future, with PRs like this https://github.com/justanr/marshmallow_enum/pull/49 pending. Something along the lines of...

**This PR is a WIP**, opening it for early feedback, will update description when closer to completion.

This would contain coding guidelines, how to run linting and tests, etc.

I am getting `faculty.clients.base.BadRequest: (, None, None)` when trying to create a new environment. Here is the spec ... ```python from faculty.clients import environment script = "echo hello" spec =...

This needs tests added before merging. While this is still in draft stage, and prior to implementing tests, I'd like to get review on the API proposed by this PR....

This line triggers a `RemovedInMarshmallow4Warning` with suggestion > "Passing 'self' to `Nested` is deprecated. Use `Nested(lambda: MySchema(...))` instead." : https://github.com/facultyai/faculty/blob/f87813a5691dfc3c23a008e1bdccc957cd536b84/faculty/clients/workspace.py#L91

In `JobClient`, the `list_jobs` function has a `limit` argument, which sets the number of jobs returned in a single request. The default value is is `None` in the library, which...