Skip to content
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

Dependabot/npm and yarn/frontend/braces 3.0.3 #17

Open
wants to merge 42 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d226ffc
Updates SDXL model name in services.py
brookr Dec 14, 2023
97c9a7e
Places system prompt in the correct location.
brookr Feb 2, 2024
00489aa
Places system prompt in the correct location.
brookr Feb 2, 2024
686f5fd
Bump urllib3 from 2.0.7 to 2.2.2 in /backend
dependabot[bot] Jan 1, 2025
04b08b4
Bump idna from 3.4 to 3.7 in /backend
dependabot[bot] Jan 1, 2025
7e1abe4
Bump starlette from 0.27.0 to 0.40.0 in /backend
dependabot[bot] Jan 1, 2025
bdad682
Bump braces from 3.0.2 to 3.0.3 in /frontend
dependabot[bot] Jan 1, 2025
67df2e8
Bump next from 14.0.0 to 14.2.15 in /frontend
dependabot[bot] Jan 1, 2025
7d83edb
Merge pull request #6 from buknon/dependabot/npm_and_yarn/frontend/ne…
buknon Jan 1, 2025
4d5e1e4
Merge pull request #7 from brookr/system-prompt-fix
buknon Jan 2, 2025
440a76f
Merge pull request #8 from brookr/main
buknon Jan 2, 2025
80af2a4
feat(chat): use claude3 for chat module
buknon Dec 31, 2024
2c0a660
feat(text): add claude 3 in avaliable models in text module
buknon Dec 31, 2024
882442d
feat(text): add aws novapro
buknon Jan 1, 2025
51eaba8
Upgrade boto3
buknon Jan 3, 2025
2aa9d8c
chore(front): change title
buknon Jan 28, 2025
1e7eed3
feat(fm): add anthropic router
buknon Jan 28, 2025
7685556
Places system prompt in the correct location.
brookr Feb 2, 2024
367abb5
Updates SDXL model name in services.py
brookr Dec 14, 2023
2998107
feat(chat): use claude3 for chat module
buknon Dec 31, 2024
97d6d19
feat(text): add claude 3 in avaliable models in text module
buknon Dec 31, 2024
20d223f
feat(text): add aws novapro
buknon Jan 1, 2025
495abdd
Upgrade boto3
buknon Jan 3, 2025
62bf7a1
chore(front): change title
buknon Jan 28, 2025
d414de1
feat(fm): add anthropic router
buknon Jan 28, 2025
f83d9a1
Merge remote-tracking branch 'refs/remotes/gh/feat-test-prompt-routin…
buknon Jan 28, 2025
f480647
Bump urllib3 from 2.0.7 to 2.2.2 in /backend
dependabot[bot] Jan 1, 2025
dc2249f
Merge remote-tracking branch 'refs/remotes/gh/dependabot/pip/backend/…
buknon Jan 28, 2025
1ebf22a
chore(req): resolve boto dependencies
buknon Jan 28, 2025
4e77a1b
chore(req): resolve boto dependencies
buknon Jan 28, 2025
d27f37f
Merge remote-tracking branch 'refs/remotes/gh/dependabot/pip/backend/…
buknon Jan 28, 2025
5a220b3
Bump starlette from 0.27.0 to 0.40.0 in /backend
dependabot[bot] Jan 1, 2025
57145be
Merge branch 'dependabot/pip/backend/starlette-0.40.0' of https://git…
buknon Jan 28, 2025
886c383
chore(pip): upgrade fastapi
buknon Jan 28, 2025
768de5c
Merge pull request #3 from buknon/dependabot/pip/backend/starlette-0.…
buknon Jan 28, 2025
ef963d3
Bump idna from 3.4 to 3.7 in /backend
dependabot[bot] Jan 28, 2025
03067fa
Merge branch 'main-gh' into dependabot/pip/backend/idna-3.7
buknon Jan 28, 2025
c8c0bdb
Merge branch 'dependabot/pip/backend/idna-3.7' of https://github.com/…
buknon Jan 28, 2025
3080459
Merge pull request #2 from buknon/dependabot/pip/backend/idna-3.7
buknon Jan 28, 2025
a726a11
Bump braces from 3.0.2 to 3.0.3 in /frontend
dependabot[bot] Jan 1, 2025
e1fd415
Merge branch 'dependabot/npm_and_yarn/frontend/braces-3.0.3' of https…
buknon Jan 28, 2025
26598f0
chore(npm): up lock
buknon Jan 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Places system prompt in the correct location.
Signed-off-by: brookr <11095+brookr@users.noreply.github.com>
  • Loading branch information
brookr committed Feb 2, 2024
commit 00489aa4b4c7ce01192957424826f894c702ce53
2 changes: 1 addition & 1 deletion backend/chat_playground/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def invoke(prompt):
""";

prompt_config = {
"prompt": f'\n\nHuman: {systemPrompt}\n\n{prompt}\n\nAssistant:',
"prompt": f'{systemPrompt}\n\nHuman: {prompt}\n\nAssistant:',
"max_tokens_to_sample": 1024,
"temperature": 0.8
}
Expand Down