cay89
cay89
The document on docs.paperspace.com seems outdated. `DeploymentsClient()` doesn't really exist, but these do: ```python from gradient import api_sdk api_sdk.create_deployment() api_sdk.update_deployment() api_sdk.get_deployment() api_sdk.list_deployments() api_sdk.delete_deployment() ``` I've tried to create a deployment...
I don't know... I just ran for minutes and it didn't write anything. However, I started to set it up because it seemed to be using only one GPU. I...
> You need to pass `--gpus all` to enable GPU on the container. I gave it here: 
I don't know if: 1. I'm doing something wrong, 2. there's something not right with the environment I'm working in, 3. or it's a bug.
Maybe it's a vllm bug? I found a workaround for this here: https://github.com/vllm-project/vllm/issues/1116 But I dont't know how I can implement this with OpenLLM.
Will mlc-llm support this use-case, or should we not wait for that?
If I set `phpVersion` to `8.3` in the config like this: ```json "plugins": ["@prettier/plugin-php"], "phpVersion": "8.3", "overrides": [ { "files": "*.php", "options": { "singleQuote": true } } ] ``` then...
@tiangolo Could you please provide any updates on this? I've begun a new FastAPI project, and I'm uncertain whether I should build upon the SQLModel project or stay with SQLAlchemy....
It also removes the parentheses from the nameless class definition in Laravel 11 migrations. There are parentheses after the `class` keyword: ```php return new class () extends Migration { ```...
I use UUID as the primary key throughout my database. Is it necessary to use a numeric auto-increment ID for this table? Are there any other options for using the...