Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
gadenbuie pushed 1 commit to feat/theme/add-sass-layer-file posit-dev/py-shiny
- chore: Throw if we add a new layer but forget to support it ca32cdd
cpsievert created a review comment on a pull request on posit-dev/py-shiny
I don't feel strongly about it (especially since there are tests), but I'd lean towards throwing an error if the method doesn't exist
cpsievert pushed 2 commits to feat/theme/add-sass-layer-file posit-dev/py-shiny
cpsievert pushed 1 commit to main posit-dev/py-shiny
- Ignore type error in test introduced by ollama 0.4.2 (#1791) 8773714
cpsievert closed a pull request on posit-dev/py-shiny
Ignore type error in test introduced by ollama 0.4.2
Gets `pyright` passing on CI. ollama must not use `pyright` for type checking because `ollama.chat` doesn't have valid `pyright` type hints https://github.com/ollama/ollama-python/commit/b50a...cpsievert created a comment on a pull request on posit-dev/py-shiny
Plyawright failures are due to different problems with airmass example. Merging
cpsievert opened a pull request on posit-dev/py-shiny
Ignore type error in test introduced by ollama 0.4.2
Gets `pyright` passing on CI. ollama must not use pyright for type checking because `ollama.chat` doesn't have valid `pyright` type hints https://github.com/ollama/ollama-python/commit/b50a65...cpsievert pushed 1 commit to ollama-pyright-fix posit-dev/py-shiny
- Fix type error in test introduced by ollama 0.4.2 fbf91ee
gadenbuie created a comment on a pull request on posit-dev/py-shiny
Check failures seem to indicate we need to update chat to match recent ollama changes (with ollama 0.4.2).
gadenbuie pushed 1 commit to feat/theme/add-sass-layer-file posit-dev/py-shiny
- refactor: Find layer boundaries once 3570737
gadenbuie created a comment on an issue on posit-dev/py-shiny
You could put them in the same `@reactive.effect`. Without being tied to a reactive event, the code in the effect function runs once on app startup. If you have a few inputs with the same choices...
HarrisonWismer closed an issue on posit-dev/py-shiny
Long Initialization time due to large number of ui.input_selectize options
Hello, I'm creating a shiny app to create an interface for biological data. For many of the pages I have, the user needs to select from a complete list of genes from the dataset which contains abou...HarrisonWismer created a comment on an issue on posit-dev/py-shiny
This seems to do the trick! Initialization is much faster now. Quick question though: Do I need to add an individual @reactive.effect def _(): ui.update_selectize( "x...
gadenbuie created a comment on an issue on posit-dev/py-shiny
That's a lot of options! You can avoid the slowdown by using server-side selectize elements, which don't try to send all of the options to the browser at once and don't create a huge number of DOM ...
HarrisonWismer opened an issue on posit-dev/py-shiny
Long Initialization time due to large number of ui.input_selectize options
Hello, I'm creating a shiny app to create an interface for biological data. For many of the pages I have, the user needs to select from a complete list of genes from the dataset which contains abou...cpsievert closed a pull request on posit-dev/py-shiny
`ui.Chat()` now correctly handles new `ollama.chat()` return value introduced in ollama 0.4
Ollama 0.4 [changed the return type of `ollama.chat()`](https://github.com/ollama/ollama-python/pull/276) (`ChatResponse`) from a `TypedDict` to a `pydantic.BaseModel`. As a result, passing that re...cpsievert pushed 1 commit to ollama-0.4-fix posit-dev/py-shiny
- Slightly more informative error message 0ae6c71