About 50 results
Open links in new tab
  1. python - How to set extra index with credentials for uv like pip ...

    Nov 4, 2025 · Similar to this question, we want to specify an extra package index to be used by uv. However, our package index url contains private information, i.e., user name and token. Up to now, …

  2. How to set an index URL for 'uv'-like pip configurations

    May 2, 2025 · When using pip to install Python packages, we can set the configurations, so that it can refer to some private repository to install packages. The use case is, for example, for big companies …

  3. Getting openai.BadRequestError: Error code: 400: 'Extra inputs are not ...

    Jun 6, 2024 · Getting openai.BadRequestError: Error code: 400: 'Extra inputs are not permitted' with an LLM model hosted on an on-prem GPU

  4. Adding extra properties to ILogger<T> structured logging

    Jul 11, 2024 · I know Serilog allows various approaches for appending additional properties to log statements, and these seem to play nice with ILogger<T>, e.g.:

  5. Pydantic validations for extra fields that not defined in schema

    Apr 12, 2022 · Pydantic v2 You can use the extra field in the model_config class attribute to forbid extra attributes during model initialisation (by default, additional attributes will be ignored). For example:

  6. node.js - How to set NODE_EXTRA_CA_CERTS env variable in windows ...

    Jan 2, 2024 · Presumably node installations on Windows already know to consult the Windows trusted certificate stores, so there no reason to use the NODE_EXTRA_CA_CERTS environment variable. …

  7. Python json.loads shows ValueError: Extra data - Stack Overflow

    Jan 11, 2014 · Python json.loads shows ValueError: Extra data Asked 12 years, 3 months ago Modified 2 years, 7 months ago Viewed 665k times

  8. How does one ignore extra arguments passed to a dataclass?

    Using the python library to populate a dataclass using a dictionary of values ignores extra arguments / values present in the dictionary (along with all the other benefits the library provides).

  9. python - Extra packages in setuptools - Stack Overflow

    Feb 24, 2021 · I created a package which has 2 modes: the basic mode with basic functionality only extended functionality which adds additional modules and needs extra requirements. For example: …

  10. Can I get incoming extra fields from Pydantic? - Stack Overflow

    Oct 18, 2021 · I have defined a pydantic Schema with extra = Extra.allow in Pydantic Config. Is it possible to get a list or set of extra fields passed to the Schema separately. For ex: from pydantic …