parser: fix add_window_ids so PARA_SENTENCE works correctly
0.1.133
In `utils/configuration.py` add global settings.cache_type one of ["redis", "fakeredis", "momento"] E.g. either directly set settings.cache_type = ... or run pytests with --ct "fakeredis"
0.1.132
ChromaDB vector store: `similar_texts_with_scores` : ensure we upper-bound k by the num chunks in the collection
0.1.131
OpenAIGPT constructor: minor fix in cache config handling. `OpenAIGPTConfig.cache_config` was being ignored based on global `settings.cache_type`. This fix ensures we change `cache_config` only if it was either None or different from `settings.cache_type`.
0.1.130
Task constructor: change default of `restart` arg to True (used to be False). This ensures that when we re-use an agent in a new task, its conv state is reset.
0.1.129
* Add seed param in OpenAIGPTConfig; * max_tokens default to 200 in llm chat method