-
-
Notifications
You must be signed in to change notification settings - Fork 116
Integrate Demo Application #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As the demo is mainly configured to be utilized with OpenAI GPT and Embeddings, what is later in the Readme explicit mentioned, it should also be mentioned in the Requirements-Section of the Readme.
With the first step one should, as a last thing, execute `docker compose run composer install --no-scripts` and then call https://localhost/ and see a chatbot UI. In fact there is an exception with the Symfony App Setup instructions that the assets are not installed.
The only thing that happens during composer install is a warning to the docker container.
```
$ docker compose run composer install --no-scripts
The repository at "/app" does not have the correct ownership and git refuses to use it:
fatal: detected dubious ownership in repository at '/app'
To add an exception for this directory, call:
git config --global --add safe.directory /app
```
But this is not a problem. What is missing is the execution of the script. When i execute `docker compose run composer install` it works and there is no exception. What was your reason to not execute the scripts, that contain the import map stuff?
* moving classes to a more component like structure - add Wikipedia and YouTube namespace and moved applicable classes. this way the code is clustered by implementation making it easier to copy paste it to your own application. * rename rag to blog - rename add to blog to clarify the implementation
62a8d3c to
c2f94e4
Compare
Nyholm
approved these changes
Jun 23, 2025
OskarStark
reviewed
Jun 23, 2025
OskarStark
reviewed
Jun 23, 2025
OskarStark
approved these changes
Jun 23, 2025
* demo-repo/restructure: (31 commits) refactor: restructure into demo folder chore: update to llm-chain 0.22 (#27) refactor: more error handling in vidoe example chore: symfony 7.3 update fix: pin chroma db version and clean up (#26) feat: add demo of GPT vision capabilities based on video stream (#22) chore: dependecy update (#23) feat: extend wikipedia system prompt by tools (#21) chore: update to lib v0.19 (#20) refactor: optimize audio chat ui (#19) feat: audio example (#18) chore: updating dependencies (#17) chore: composer update incl twig cve patch (#16) chore: llm chain update with system_prompt support (#15) chore: install bundle 0.12 (#14) chore: update to llm-chain 0.11.0 (#13) chore: library update (#12) refactor: follow up on example structure to have them cleaner and more separated (#11) fix: typed animation only on xhr responses (#10) refactor: moving classes to a more component like structure (#9) ...
c2f94e4 to
03dcf05
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Integrating the LLM Chain demo app with history