Yasser Elsaid
Yasser Elsaid
Applied the state pattern to the Query class to make methods on involving the filter attribute behave differently depending on the filter state.
Implemented the iterator pattern on classes Response and ResponseToIndividualQuestion. This makes it easier to traverse the results collection in the Response and get access to the results in a sequential...
Added a file response.py as the starter code to allow for nested responses. Now each response can have a list of children responses until a leaf response is reached.
Added a new API class to be wrapper around the function get_application() and implemented the singleton pattern then refactored the code in api.py accordingly
Added a new class Api to be wrapper around the function get_application in the file api.py Now other functions can be implemented inside the Api class to provide better encapsulation...
Added a new class DataIngestion to be wrapper around the 2 functions index_new_docs and update_embeddings in the file data_ingestion.py Seeing that these 2 functions are connected in functionality, they can...
I am using next.js to for my React app and I am getting this error `ReferenceError: window is not defined at C:\Users\yasserelsaid\Desktop\rmc\node_modules\react-available-times\dist\main.js:196:3 at C:\Users\yasserelsaid\Desktop\rmc\node_modules\react-available-times\dist\main.js:186:47 at module.exports.module.exports (C:\Users\yasserelsaid\Desktop\rmc\node_modules\react-available-times\dist\main.js:224:68) at Object. (C:\Users\yasserelsaid\Desktop\rmc\node_modules\react-available-times\dist\main.js:5432:36)...
### Description I am working on creating a playground to compare multiple chatbot instances using Vercel's AI SDK. Below is a simplified representation of our AI state structure: ``` //...