Recent Releases of https://github.com/mihaiconstantin/boterview
https://github.com/mihaiconstantin/boterview - boterview v1.3.0
What's Changed
- Add CLI functionality to print the package version by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/35
- Add documentation via
VitePressby @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/36 - Add GitHub workflow to deploy documentation to Github Pages by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/38
- Fix documentation
CIworkflow by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/39 - Miscellaneous documentation changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/40
- Miscellaneous documentation design changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/41
- Add support for
markdownparsing and styling in the UI by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/43 - Miscellaneous refactoring by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/44
- Release
1.3.0by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/45
Changelog
Added
- Add
--versionoption toboterviewCLI command to display the current version of the package. - Add
documentation.yamlGitHub workflow file for deploying theboterviewdocumentation toGitHub Pageson push to themainbranch. - Add preliminary documentation via
VitePress. The documentation setup is complete, only the content needs working on.
Changed
- Changed markdown parsing for the UI pages content to rely on
remark-gfmfor better support of GitHub Flavored Markdown (GFM) features (e.g., tables, task or lists). Now, it is also possible to combinemarkdownandHTMLin the UI content.
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.2.0...v1.3.0
- Python
Published by mihaiconstantin 11 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.2.0
What's Changed
- Miscellaneous refactoring by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/29
- Allow the timeout (i.e., and
/pageredirection) to be optional by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/31 - Various frontend refactoring by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/32
- Release
1.2.0by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/33
Changelong
Added
- Add functionality to disable the timeout (i.e., and automatic page reload from the stop page to the welcome page). If the user specifies a timeout of
0, or a negative value, the timeout will be disabled. This can be useful for studies that require participants to perform additional tasks after the interview. Closes #30. - Add default index route
/for when the server is started in headless model. This route outputs aJSONresponse indicating that the server is running in headless mode.
Changed
- Update
useVerifyParticipantCodehook to explicit mark any previous consent as invalid upon participant code verification. This change ensures that the participant is required to re-consent if they provide a new code. - Remove superfluous period in default footer text.
- Update
boterview previewcommand inREADME.mdreflect that the default to scaffolded condition is now named"Condition 1".
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.1.0...v1.2.0
- Python
Published by mihaiconstantin 11 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.1.0
What's Changed
- Allow application to be served from any URL by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/19
- Ensure cookie names are correctly parsed by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/20
- Miscellaneous frontend changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/21
- Disable
chainlitautomatic scroll to message by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/22 - Build-related changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/23
- Ensure the interview remains robust in the face of chat page reloading by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/26
- Update default values for the configuration template by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/27
- Release
1.1.0by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/28
Changelog
Added
- Add functionality to reconstruct the message history and repopulate the chat interface based on the conversations stored in the database. This feature makes the interview more robust to interruptions (e.g., page reloads). Fixes #24.
Changed
- Update default paths in template to
/interfacefor UI content files, and/interviewfor interview files. - Update
pyproject.tomlto excludeCNAMEfrom source distribution build. - Disable automatic scrolling to message in the chat window. This behavior was added after a recent update to
chainlit(i.e., see this issue). - Various improvements to the frontend application.
Fixed
- Fix participants getting reassigned to a new condition each time the chat page was reloaded. Closes #24.
- Fix issue with cookie names not being parsed correctly in Safari due to extra whitespace. Closes #18.
- Fix issue with hardcoded
localhostURL. Now, the application can be served from any domain. The recommended way is to serve the static files from the same domain as the backend. However, one can also serve the static files from a different domain, in which case a reverse proxy should be used to prevent anyCORSissues. In development, theviteserver for the frontend is configured to proxy requests to the backend (i.e., the backend URL is provided to the frontend server via the.env.developmentfile located at/frontend/app/.env.development). Closes #17.
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.0.3...v1.1.0
- Python
Published by mihaiconstantin 11 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.0.3
What's Changed
- Add
markdownsupport for UI content by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/14 - Update default application content by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/15
- Release
1.0.3by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/16
Changelog
Added
- Add
markdownsupport inPageContentcomponent. When the UI content is not provided asHTML, the component will render the content asmarkdownparagraphs, with support for various formatting options. The processing is done using thereact-markdownlibrary.
Changed
- Update default UI content to feature
markdownformatting for the introduction and consent pages. - Update default system prompt to ensure the LLM does not copy the interview document to the chat.
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.0.2...v1.0.3
- Python
Published by mihaiconstantin 12 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.0.2
What's Changed
- Miscellaneous documentation changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/13
Changelog
Changed
- Update badges in
README.md. - Update heading capitalization in
CHANGELOG.md.
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.0.1...v1.0.2
- Python
Published by mihaiconstantin 12 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.0.1
What's Changed
- Miscellaneous documentation changes by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/12
Changelog
Changed
- Update build artifacts to exclude unnecessary
assets/directory. - Update logo path in
README.mdto use use theGitHubraw link. - Remove the
CClicense images from theREADME.mdfile do to rendering issues onPyPI.
Full Changelog: https://github.com/mihaiconstantin/boterview/compare/v1.0.0...v1.0.1
- Python
Published by mihaiconstantin 12 months ago
https://github.com/mihaiconstantin/boterview - boterview v1.0.0
What's Changed
- Add main application services by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/1
- Update appplication content and configuration template by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/2
- Add application frontend by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/3
- Add
chainlitfrontend overrides by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/4 - Add application backend by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/5
- Add chat functionality via
chainlitby @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/6 - Expand the
boterviewCLI commands by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/7 - Update the build process to handle the frontend by @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/8
- Update
READMEandCHANGELOGby @mihaiconstantin in https://github.com/mihaiconstantin/boterview/pull/11
New Contributors
- @mihaiconstantin made their first contribution in https://github.com/mihaiconstantin/boterview/pull/1
Changelog
Added
- Add service classes (i.e.,
Boterview,Study,Counter,Prompt,Condition,Interview,Guide,Introduction,Protocol, andQuestion) to manage study logic, participant assignment, and configuration. - Add
Reactfrontend, including various components, pages, and hooks. - Integrate
chainlitlifecycle chat events (i.e., start, stop, message, and authentication) using anOpenAIasync client. - Add package CLI commands to:
- generate a new study, application secret, and participation codes
- parse study data to
markdown - preview study conditions
- run the study server
- Implement backend in
FastAPI, including several API routes for participant authentication, consent, chat handling, and UI content retrieval. - Add several database models for
Participant,Conversation, andConfiguration. - Add several payload models for API request and response handling.
- Add helper functions for general utilities.
- Add helper functions for creating and decoding
JWTtokens, as well as for parsing cookies to support secure authentication flows. - Add helper functions to manage
chainlitevents, such as retrieving message history, sending stop messages, and determining when a conversation should end. - Add helper functions for common database operations.
- Add context managers to ensure several objects are properly initialized when shared across the application.
- Add several services to manage core application logic, configuration, and study data.
- Add
hatchbuild hook to prepare frontend assets for packaging. - Add
pyproject.tomlbuild configuration to manage frontend assets and ensure proper packaging. - Add
chainlitconfiguration file with sensible defaults. - Add
chainlitstyling overrides, theme, favicon, and translation files. - Add option to intercept
chainlitcustom action events.
Changed
- Refactored core services (
Study,Boterview,Configuration, etc.) into dedicated modules underservices/(previously underbackend/). - Improved error handling, updated documentation, and optimized configuration handling.
Fixed
- Ensure the template
TOMLgeneration usesPOSIXpath separators.
Security
- Implement
JWTauthentication and token handling. - Add
HTMLsanitization for UI content provided by users via the study files. - Implement route protections to prevent study participants from skipping verification and consent steps.
Full Changelog: https://github.com/mihaiconstantin/boterview/commits/v1.0.0
- Python
Published by mihaiconstantin 12 months ago