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

Staging changes to Dev branch #1034

Merged
merged 9 commits into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ If you are using Neo4j Desktop, you will not be able to use the docker-compose b
#### Running through docker-compose
By default only OpenAI and Diffbot are enabled since Gemini requires extra GCP configurations.
According to enviornment we are configuring the models which is indicated by VITE_LLM_MODELS_PROD variable we can configure model based on our need.

EX:
```env
VITE_LLM_MODELS_PROD="openai_gpt_4o,openai_gpt_4o_mini,diffbot,gemini_1.5_flash"

You can then run Docker Compose to build and start all components:
```bash
docker-compose up --build
Expand Down Expand Up @@ -67,6 +69,7 @@ VITE_CHAT_MODES=""
If however you want to specify the only vector mode or only graph mode you can do that by specifying the mode in the env:
```env
VITE_CHAT_MODES="vector,graph"
VITE_CHAT_MODES="vector,graph"
```

#### Running Backend and Frontend separately (dev environment)
Expand Down
7 changes: 4 additions & 3 deletions backend/src/graphDB_dataAccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,9 +399,9 @@ def get_duplicate_nodes_list(self):
AND
(
// either contains each other as substrings or has a text edit distinct of less than 3
(size(toString(other.id)) > 2 AND toLower(n.id) CONTAINS toLower(other.id)) OR
(size(toString(n.id)) > 2 AND toLower(other.id) CONTAINS toLower(n.id))
OR (size(toString(n.id))>5 AND apoc.text.distance(toLower(n.id), toLower(other.id)) < $duplicate_text_distance)
(size(toString(other.id)) > 2 AND toLower(toString(n.id)) CONTAINS toLower(toString(other.id))) OR
(size(toString(n.id)) > 2 AND toLower(toString(other.id)) CONTAINS toLower(toString(n.id)))
OR (size(toString(n.id))>5 AND apoc.text.distance(toLower(toString(n.id)), toLower(toString(other.id))) < $duplicate_text_distance)
OR
vector.similarity.cosine(other.embedding, n.embedding) > $duplicate_score_value
)] as similar
Expand Down Expand Up @@ -535,6 +535,7 @@ def update_node_relationship_count(self,document_name):
"nodeCount" : nodeCount,
"relationshipCount" : relationshipCount
}

return response

def get_nodelabels_relationships(self):
Expand Down
1 change: 0 additions & 1 deletion backend/src/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ async def get_graph_document_list(
return graph_document_list



async def get_graph_from_llm(model, chunkId_chunkDoc_list, allowedNodes, allowedRelationship, additional_instructions=None):
try:
llm, model_name = get_llm(model)
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/components/ChatBot/ChatInfoModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import { DocumentDuplicateIconOutline, ClipboardDocumentCheckIconOutline } from '@neo4j-ndl/react/icons';
import '../../styling/info.css';
import Neo4jRetrievalLogo from '../../assets/images/Neo4jRetrievalLogo.png';
import { ExtendedNode, UserCredentials, chatInfoMessage } from '../../types';
import { ExtendedNode, chatInfoMessage } from '../../types';
import { useEffect, useMemo, useReducer, useRef, useState } from 'react';
import GraphViewButton from '../Graph/GraphViewButton';
import { chunkEntitiesAPI } from '../../services/ChunkEntitiesInfo';
Expand Down Expand Up @@ -142,7 +142,6 @@ const ChatInfoModal: React.FC<chatInfoMessage> = ({
toggleInfoLoading();
try {
const response = await chunkEntitiesAPI(
userCredentials as UserCredentials,
userCredentials?.database,
nodeDetails,
entities_ids,
Expand Down
17 changes: 14 additions & 3 deletions frontend/src/components/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ const Content: React.FC<ContentProps> = ({
const [extractLoading, setIsExtractLoading] = useState<boolean>(false);
const { setUserCredentials, userCredentials, setConnectionStatus, isGdsActive, isReadOnlyUser, isGCSActive } =
useCredentials();

const [retryFile, setRetryFile] = useState<string>('');
const [retryLoading, setRetryLoading] = useState<boolean>(false);
const [showRetryPopup, toggleRetryPopup] = useReducer((state) => !state, false);
Expand Down Expand Up @@ -704,8 +703,7 @@ const Content: React.FC<ContentProps> = ({
const selectedRows = childRef.current?.getSelectedRows();
if (selectedRows?.length) {
const expiredFilesExists = selectedRows.some(
(c) => isFileReadyToProcess(c, true) && isExpired((c?.createdAt as Date) ?? new Date())
);
(c) => isFileReadyToProcess(c, true) && isExpired((c?.createdAt as Date) ?? new Date()));
const largeFileExists = selectedRows.some(
(c) => isFileReadyToProcess(c, true) && typeof c.size === 'number' && c.size > largeFileSize
);
Expand Down Expand Up @@ -808,6 +806,19 @@ const Content: React.FC<ContentProps> = ({
></ConfirmationDialog>
</Suspense>
)}
{showExpirationModal && filesForProcessing.length && (
<Suspense fallback={<FallBackDialog />}>
<ConfirmationDialog
open={showExpirationModal}
largeFiles={filesForProcessing}
extractHandler={handleGenerateGraph}
onClose={() => setShowExpirationModal(false)}
loading={extractLoading}
selectedRows={childRef.current?.getSelectedRows() as CustomFile[]}
isLargeDocumentAlert={false}
></ConfirmationDialog>
</Suspense>
)}
{showDeletePopUp && (
<DeletePopUp
open={showDeletePopUp}
Expand Down
25 changes: 13 additions & 12 deletions frontend/src/components/Popups/GraphEnhancementDialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,34 +74,34 @@ export default function GraphEnhancementDialog({ open, onClose }: { open: boolea
<Tabs.Tab
tabId={1}
htmlAttributes={{
'aria-label': 'Disconnected Nodes',
'aria-label': 'Additional Instructions',
}}
>
Disconnected Nodes
Additional Instructions
</Tabs.Tab>
<Tabs.Tab
tabId={2}
htmlAttributes={{
'aria-label': 'Duplication Nodes',
'aria-label': 'Disconnected Nodes',
}}
>
De-Duplication Of Nodes
Disconnected Nodes
</Tabs.Tab>
<Tabs.Tab
tabId={3}
htmlAttributes={{
'aria-label': 'Post Processing Jobs',
'aria-label': 'Duplication Nodes',
}}
>
Post Processing Jobs
De-Duplication Of Nodes
</Tabs.Tab>
<Tabs.Tab
tabId={4}
htmlAttributes={{
'aria-label': 'Additional Instructions',
'aria-label': 'Post Processing Jobs',
}}
>
Additional Instructions
Post Processing Jobs
</Tabs.Tab>
</Tabs>
</Flex>
Expand All @@ -123,17 +123,18 @@ export default function GraphEnhancementDialog({ open, onClose }: { open: boolea
</div>
</Tabs.TabPanel>
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={1}>
<DeletePopUpForOrphanNodes deleteHandler={orphanNodesDeleteHandler} loading={orphanDeleteAPIloading} />
<AdditionalInstructionsText closeEnhanceGraphSchemaDialog={onClose} />
</Tabs.TabPanel>
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={2}>
<DeduplicationTab />
<DeletePopUpForOrphanNodes deleteHandler={orphanNodesDeleteHandler} loading={orphanDeleteAPIloading} />
</Tabs.TabPanel>
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={3}>
<PostProcessingCheckList />
<DeduplicationTab />
</Tabs.TabPanel>
<Tabs.TabPanel className='n-flex n-flex-col n-gap-token-4 n-p-token-6' value={activeTab} tabId={4}>
<AdditionalInstructionsText closeEnhanceGraphSchemaDialog={onClose} />
<PostProcessingCheckList />
</Tabs.TabPanel>

</Dialog.Content>
</Dialog>
);
Expand Down
1 change: 0 additions & 1 deletion frontend/src/context/UserCredentials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const UserCredentialsWrapper: FunctionComponent<Props> = (props) => {
const [showDisconnectButton, setShowDisconnectButton] = useState<boolean>(false);
const [isGCSActive, setIsGCSActive] = useState<boolean>(false);
const [chunksToBeProces, setChunksToBeProces] = useState<number>(50);

const value = {
userCredentials,
setUserCredentials,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/services/GetNodeLabelsRelTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import api from '../API/Index';
export const getNodeLabelsAndRelTypes = async () => {
const formData = new FormData();
try {
const response = await api.post<ServerData>(`/schema`, formData);
const response = await api.post<ServerData>(`/schema`,formData);
return response;
} catch (error) {
console.log(error);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/services/GetOrphanNodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import api from '../API/Index';
export const getOrphanNodes = async () => {
const formData = new FormData();
try {
const response = await api.post<OrphanNodeResponse>(`/get_unconnected_nodes_list`, formData);
const response = await api.post<OrphanNodeResponse>(`/get_unconnected_nodes_list`,formData);
return response;
} catch (error) {
console.log(error);
Expand Down