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

Feat/fireworks integration #2089

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f1ad995
FEAT: Added Fireworks Integration
somashekhar161 Sep 20, 2024
a38675b
FEAT: Added Fireworks Integration
somashekhar161 Sep 20, 2024
2d5865e
FEAT: Added fixed UI mode name
somashekhar161 Sep 20, 2024
c5c1f9b
fixed at ui height overlow
somashekhar161 Sep 20, 2024
241637f
FEAT: Added Fireworks integration
somashekhar161 Sep 20, 2024
4d22546
Added dockerfile and docker-compose for fireworks
somashekhar161 Sep 21, 2024
519c48b
Merge branch 'main' of github.com:somashekhar161/private-gpt into fea…
somashekhar161 Sep 24, 2024
9c3590e
Added embedded model option for fireworks \n Added documentation for …
somashekhar161 Sep 24, 2024
cecec30
fixed test black error
somashekhar161 Sep 24, 2024
80f15a1
fixed ruff chekc
somashekhar161 Sep 24, 2024
b807e50
fixed mypy private_gpt for llama-index
somashekhar161 Sep 24, 2024
6a46060
fixed mypy ignored mypy-llama-index-embeddings-fireworks
somashekhar161 Sep 24, 2024
03e8809
fixed mypy ignored llama-index-embeddings-fireworks
somashekhar161 Sep 24, 2024
0ff7a06
fixed mypy ignored tool.mypy-llama_index.embeddings.fireworks
somashekhar161 Sep 24, 2024
b2ffe5b
fixed mypy
somashekhar161 Sep 24, 2024
16d1f60
fixed mypy ignored tool.mypy-llama_index.embeddings.fireworks
somashekhar161 Sep 24, 2024
b8cb49a
updated dependencies poetry lock
somashekhar161 Sep 24, 2024
2052ff4
added # type: ignore for embeddings.fireworks
somashekhar161 Sep 24, 2024
5334dda
fixed ruff and black
somashekhar161 Sep 24, 2024
c846b3f
revert back to main branch's dependecy version
somashekhar161 Sep 25, 2024
62985df
resolved dependecies
somashekhar161 Sep 26, 2024
c4be3f8
Merge branch 'zylon-ai:main' into feat/fireworks-integration
somashekhar161 Nov 4, 2024
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
fixed at ui height overlow
somashekhar161 committed Sep 20, 2024
commit c5c1f9b3e2bf4a80da7d58f8800fd81ae1fcf1af
2 changes: 1 addition & 1 deletion private_gpt/ui/ui.py
Original file line number Diff line number Diff line change
@@ -377,7 +377,7 @@ def _build_ui_blocks(self) -> gr.Blocks:
".contain { display: flex !important; flex-direction: column !important; }"
"#component-0, #component-3, #component-10, #component-8 { height: 100% !important; }"
"#chatbot { flex-grow: 1 !important; overflow: auto !important;}"
"#col { height: calc(100vh - 112px - 16px) !important; }"
"#col { min-height: calc(100vh - 112px - 16px) !important; }"
"hr { margin-top: 1em; margin-bottom: 1em; border: 0; border-top: 1px solid #FFF; }"
".avatar-image { background-color: antiquewhite; border-radius: 2px; }"
".footer { text-align: center; margin-top: 20px; font-size: 14px; display: flex; align-items: center; justify-content: center; }"