Blake R

Results 12 issues of Blake R

Currently both [core/input.py](https://github.com/RSGInc/activitysim/blob/develop/activitysim/core/input.py#L100) and [models/initialize.py](https://github.com/RSGInc/activitysim/blob/develop/activitysim/abm/models/initialize.py#L63) perform pipeline table column renames during the input/initialize steps. We can remove this from initialize.py and remove the `column_map` option from the [various annotation yamls](https://github.com/RSGInc/activitysim/blob/develop/example/configs/initialize_households.yaml).

`populationsim/example_test$ python run_populationsim.py -c configs2` ``` File "/usr/local/anaconda3/lib/python3.7/site-packages/activitysim-0.9.2-py3.7.egg/activitysim/core/config.py", line 267, in data_file_path return cascading_input_file_path(file_name, 'data_dir', mandatory) File "/usr/local/anaconda3/lib/python3.7/site-packages/activitysim-0.9.2-py3.7.egg/activitysim/core/config.py", line 260, in cascading_input_file_path (dir_list_injectable_name, file_path, dir_list)) RuntimeError: file_path data_dir: file 'None'...

Checks for `sys.version_info < (3,)` are no longer necessary: https://github.com/ActivitySim/activitysim/blob/a3dca1f8280374cc3fa22aa27d0503a20f3bdf58/activitysim/core/config.py#L314 https://github.com/ActivitySim/activitysim/blob/a3dca1f8280374cc3fa22aa27d0503a20f3bdf58/activitysim/abm/tables/skims.py#L40 https://github.com/ActivitySim/activitysim/blob/a3dca1f8280374cc3fa22aa27d0503a20f3bdf58/activitysim/core/steps/output.py#L43 We can also consider updating our string interpolation convention to use the more readable 'fstring' format, only in...

The following check fails for multi-index DataFrames since `df.index.name` for multi-indices is a list, not a string and therefore `df.index.name in df` is false and the index gets wiped. OD...

Added some tests for the UI with [Playwright](https://playwright.dev/python/)! Here's a couple decisions I made that could use another gut check or two: - I chose to spin up an actual...

Addresses https://github.com/Quansight/ragna/issues/492

- Add API endpoints for document content - Add source content viewer to UI Closes https://github.com/Quansight/ragna/issues/466

### Feature description We would like to be able to click on the `Source Info` button on the assistant's answer in the UI and show the list of relevant sources,...

type: enhancement 💅

### Bug description In some sources in the source info dropdown the text overlaps with itself ![Screenshot from 2024-07-19 13-12-00](https://github.com/user-attachments/assets/b2ca8769-a0de-4237-a812-c01cc1b5b2d4) ### How to reproduce the bug? It is unclear when/why...

type: bug 🐛

### Bug description When opening a new chat, if the user has an existing Chat Info sidebar open, the info should either update to match the new chat or the...

type: bug 🐛