pySilver
pySilver
Not sure if it's a bug or expected behaviour but having this markup initially on page: ```html This is the ORIGINAL product list that is expensive to load on initial...
Hi! I've just upgraded from deprecated v14 and noticed that Merchant Links are not working any more and were removed from examples directory. Is it no longer needed?
## 🚀 Feature Request What are the blockers to increase supported python version?
When settings contains types that are not covered with `to_django` it is passes as-is to underlying variables. So if settings contains any of these types (and much more, any custom):...
Documents declaration works when `Optional` is used: ```python class MyDocument(Document): label: Optional[str] doc = MyDocument(label="test") print(doc.full_clean()) # Prints no error ie. None ``` however more recent syntax for Optional is...
Simple example causes error: ``` BadRequestError: Error code: 400 - {'error': {'message': 'gemma2:9b-text-q4_K_M does not support tools', 'type': 'api_error', 'param': None, 'code': None}} ``` ```python from pydantic_ai import Agent from...
Thanks for your lib! It looks very interesting. I'm wondering if that is possible to use it with https://github.com/guidance-ai/guidance as latter is great in response shaping or you aim to...
Here is my minimal setup: ```python from taskiq_redis import ListQueueBroker, RedisAsyncResultBackend redis_async_result = RedisAsyncResultBackend( redis_url="redis://localhost:6379", ) # Or you can use PubSubBroker if you need broadcasting broker = ListQueueBroker( url="redis://localhost:6379",...
### Issue Summary I have a really basic model: ```python class BrandProfile( DraftStateMixin, LockableMixin, RevisionMixin, index.Indexed, models.Model ): """ Represents a brand profile """ site = models.ForeignKey( Site, verbose_name=_("site"), on_delete=models.PROTECT,...
### Issue Summary It looks like there is no way to remove the form field when a custom form is used. ### Steps to Reproduce Consider the following simplified use-case:...