├── .gitignore ├── LICENSE ├── README.md ├── dotnet ├── GraphlitIngest │ ├── .gitignore │ ├── GraphlitIngest.csproj │ ├── GraphlitIngest.sln │ ├── Program.cs │ ├── Properties │ │ └── PublishProfiles │ │ │ ├── linux-x64.pubxml │ │ │ └── win-x64.pubxml │ ├── README.md │ ├── appsettings.json │ ├── global.json │ └── images │ │ ├── graphlit-logo.png │ │ └── screenshot.png └── SimpleChatExample │ ├── .gitignore │ ├── GraphlitChat.csproj │ ├── GraphlitChat.sln │ ├── Program.cs │ ├── README.md │ ├── appsettings.json │ └── global.json ├── nextjs ├── ask │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── fontawesome.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── public │ │ ├── fonts │ │ │ ├── Hubot-Sans.woff2 │ │ │ └── Mona-Sans.woff2 │ │ └── images │ │ │ ├── favicon.ico │ │ │ ├── graphlit-fun-logo-256.png │ │ │ ├── graphlit-logo.svg │ │ │ └── screenshot.jpeg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── conversation │ │ │ │ │ ├── [id] │ │ │ │ │ └── route.ts │ │ │ │ │ ├── prompt │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ChatPlaceholder.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Message.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── PromptControls.tsx │ │ │ └── icons │ │ │ │ ├── DiscordIcon.tsx │ │ │ │ └── GithubIcon.tsx │ │ ├── theme │ │ │ ├── constants.ts │ │ │ ├── nextui │ │ │ │ ├── common.js │ │ │ │ ├── dark │ │ │ │ │ └── index.js │ │ │ │ └── light │ │ │ │ │ └── index.js │ │ │ └── opacity.ts │ │ ├── types.ts │ │ ├── types │ │ │ └── react-copy-to-clipboard.d.ts │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── chat-graph │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── fontawesome.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── public │ │ ├── fonts │ │ │ ├── Hubot-Sans.woff2 │ │ │ └── Mona-Sans.woff2 │ │ └── images │ │ │ ├── favicon.ico │ │ │ ├── graphlit-logo.svg │ │ │ └── screenshot.png │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── conversation │ │ │ │ │ ├── [id] │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── specification │ │ │ │ │ │ │ └── [specId] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── prompt │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── files │ │ │ │ │ └── route.ts │ │ │ │ ├── specifications │ │ │ │ │ └── route.ts │ │ │ │ └── workflows │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ChatPlaceholder.tsx │ │ │ ├── ConversationList.tsx │ │ │ ├── EChartsGraph.tsx │ │ │ ├── FileCard.tsx │ │ │ ├── Graphbar.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Message.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── PromptControls.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SpecificationSelect.tsx │ │ │ └── icons │ │ │ │ ├── GithubIcon.tsx │ │ │ │ └── VercelIcon.tsx │ │ ├── constants.ts │ │ ├── context │ │ │ └── Layout.tsx │ │ ├── theme │ │ │ ├── constants.ts │ │ │ ├── nextui │ │ │ │ ├── common.js │ │ │ │ ├── dark │ │ │ │ │ └── index.js │ │ │ │ └── light │ │ │ │ │ └── index.js │ │ │ └── opacity.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── chat │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── fontawesome.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── public │ │ ├── fonts │ │ │ ├── Hubot-Sans.woff2 │ │ │ └── Mona-Sans.woff2 │ │ └── images │ │ │ ├── favicon.ico │ │ │ ├── graphlit-logo.svg │ │ │ └── screenshot.png │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── conversation │ │ │ │ │ ├── [id] │ │ │ │ │ │ ├── route.ts │ │ │ │ │ │ └── specification │ │ │ │ │ │ │ └── [specId] │ │ │ │ │ │ │ └── route.ts │ │ │ │ │ ├── prompt │ │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── files │ │ │ │ │ └── route.ts │ │ │ │ └── specifications │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── ChatPlaceholder.tsx │ │ │ ├── ConversationList.tsx │ │ │ ├── FileCard.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Message.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── PromptControls.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SpecificationSelect.tsx │ │ │ └── icons │ │ │ │ ├── GithubIcon.tsx │ │ │ │ └── VercelIcon.tsx │ │ ├── constants.ts │ │ ├── context │ │ │ └── Layout.tsx │ │ ├── theme │ │ │ ├── constants.ts │ │ │ ├── nextui │ │ │ │ ├── common.js │ │ │ │ ├── dark │ │ │ │ │ └── index.js │ │ │ │ └── light │ │ │ │ │ └── index.js │ │ │ └── opacity.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── file-extraction │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── fontawesome.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── public │ │ ├── fonts │ │ │ ├── Hubot-Sans.woff2 │ │ │ └── Mona-Sans.woff2 │ │ └── images │ │ │ ├── favicon.ico │ │ │ ├── graphlit-logo.svg │ │ │ └── screenshot.png │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── ingest │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── Content.tsx │ │ │ ├── Layout.tsx │ │ │ ├── Navbar.tsx │ │ │ └── icons │ │ │ │ ├── GithubIcon.tsx │ │ │ │ └── VercelIcon.tsx │ │ ├── theme │ │ │ ├── constants.ts │ │ │ ├── nextui │ │ │ │ ├── common.js │ │ │ │ ├── dark │ │ │ │ │ └── index.js │ │ │ │ └── light │ │ │ │ │ └── index.js │ │ │ └── opacity.ts │ │ └── types.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── uppy │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api │ │ │ └── auth │ │ │ │ └── route.ts │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ └── UppyUploader.tsx │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── graphlit-logo.svg │ └── tsconfig.json └── web-extraction │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── README.md │ ├── fontawesome.ts │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── prettier.config.js │ ├── public │ ├── fonts │ │ ├── Hubot-Sans.woff2 │ │ └── Mona-Sans.woff2 │ └── images │ │ ├── favicon.ico │ │ ├── graphlit-logo.svg │ │ └── screenshot.png │ ├── src │ ├── app │ │ ├── api │ │ │ ├── crawl │ │ │ │ └── route.ts │ │ │ └── scrape │ │ │ │ └── route.ts │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── Content.tsx │ │ ├── Layout.tsx │ │ ├── Navbar.tsx │ │ └── icons │ │ │ ├── GithubIcon.tsx │ │ │ └── VercelIcon.tsx │ ├── theme │ │ ├── constants.ts │ │ ├── nextui │ │ │ ├── common.js │ │ │ ├── dark │ │ │ │ └── index.js │ │ │ └── light │ │ │ │ └── index.js │ │ └── opacity.ts │ ├── types.ts │ └── utils │ │ └── validateUrl.ts │ ├── tailwind.config.ts │ └── tsconfig.json └── python ├── Notebook Examples ├── Agents │ ├── Graphlit_2024_09_21_CrewAI_Medical_AI_Agent.ipynb │ ├── Graphlit_2024_09_22_CrewAI_Home_Inspection_Email.ipynb │ ├── Graphlit_2024_09_23_CrewAI_Legal_AI_Agent.ipynb │ ├── Graphlit_2024_12_07_CrewAI_Web_Marketing_Analyzer.ipynb │ └── Graphlit_2024_12_08_CrewAI_Product_Data_Extraction.ipynb ├── Classification │ ├── Graphlit_2024_12_24_Auto_Filter_Microsoft_Emails_in_Conversation.ipynb │ ├── Graphlit_2025_01_10_Configure_Email_Filters.ipynb │ └── Graphlit_2025_03_17_Classify_GitHub_Issues.ipynb ├── Costs │ ├── Graphlit_2024_09_26_Analyze_Costs_&_Usage.ipynb │ ├── Graphlit_2024_12_23_Analyze_Google_Drive_Feed_Ingestion_Costs_&_Usage.ipynb │ ├── Graphlit_2025_01_16_Analyze_Project_Costs_&_Usage.ipynb │ └── Graphlit_2025_02_19_Analyze_Trello_Feed_Ingestion_Costs_&_Usage.ipynb ├── Extraction (Knowledge Graph) │ ├── Graphlit_2024_09_09_Generate_Knowledge_Graph_from_Web_Search.ipynb │ ├── Graphlit_2024_09_10_GraphRAG_from_Web_Search.ipynb │ ├── Graphlit_2024_09_16_Explore_Conversational_Knowledge_Graph.ipynb │ ├── Graphlit_2024_09_18_Explore_GitHub_Issues.ipynb │ ├── Graphlit_2024_09_25_Connected_Data_Knowledge_Graph_Challenge.ipynb │ ├── Graphlit_2024_10_05_Build_Medical_Conversational_Knowledge_Graph.ipynb │ └── Graphlit_2025_03_13_Extract_Knowledge_Graph.ipynb ├── Ingestion & Preparation │ ├── Graphlit_2024_09_01_Extract_Markdown_from_PDF.ipynb │ ├── Graphlit_2024_10_28_Extract_Markdown_from_PDF_with_Vision_Models.ipynb │ ├── Graphlit_2024_12_24_Assign_Labels_at_Ingestion_Time.ipynb │ ├── Graphlit_2024_12_28_Assign_Labels_During_Ingestion.ipynb │ ├── Graphlit_2025_02_19_Transcribe_Podcast_using_Assembly_AI.ipynb │ └── Graphlit_2025_02_26_Extract_Markdown_from_Web_Page_with_Vision_Models.ipynb ├── Multimodal │ ├── Graphlit_2024_11_16_Describe_Image_with_Vision_LLM.ipynb │ ├── Graphlit_2024_11_24_Multi_turn_Analysis_of_Image.ipynb │ └── Graphlit_2024_12_12_Describe_Image_with_OpenAI_Compatible_Moondream_Vision_LLM.ipynb ├── Other │ ├── Graphlit_2024_10_21_Configure_Embedding_Model.ipynb │ ├── Graphlit_2025_01_05_Ask_Graphlit.ipynb │ ├── Graphlit_2025_01_05_Query_Model_Cards.ipynb │ └── Graphlit_2025_01_17_Configure_Workflow_Actions.ipynb ├── Publishing │ ├── Graphlit_2024_09_04_Publish_Summary_of_Web_Research.ipynb │ ├── Graphlit_2024_09_12_Publish_Audio_Review_of_Paper.ipynb │ ├── Graphlit_2024_09_14_Publish_Story_Graph.ipynb │ ├── Graphlit_2024_09_15_Publish_Audio_Summary_of_10_Q.ipynb │ ├── Graphlit_2024_09_30_Publish_Podcast_Guest_Backgrounder.ipynb │ ├── Graphlit_2024_12_27_Publish_Audio_Summary_of_Year_in_Review.ipynb │ ├── Graphlit_2024_12_29_Publish_Timeline_of_Year_in_Review.ipynb │ └── Graphlit_2025_01_01_Publish_Graphlit_Year_in_Review.ipynb ├── RAG & Conversations │ ├── Graphlit_2024_09_13_Compare_RAG_strategies.ipynb │ ├── Graphlit_2024_09_19_Web_Search_to_RAG.ipynb │ ├── Graphlit_2024_09_20_FinanceBench_evaluation.ipynb │ ├── Graphlit_2024_09_28_Explore_and_Search_Conversations.ipynb │ ├── Graphlit_2024_09_29_Explore_GitHub_Repo.ipynb │ ├── Graphlit_2024_10_03_Using_Tools_with_Conversations.ipynb │ ├── Graphlit_2024_10_25_Using_Tools_with_Conversations_for_User_Memory.ipynb │ ├── Graphlit_2024_11_13_GraphRAG_from_Podcast.ipynb │ ├── Graphlit_2024_11_24_Directly_Prompt_LLM_via_Conversation_Messages.ipynb │ ├── Graphlit_2024_11_25_SharePoint_to_RAG.ipynb │ ├── Graphlit_2024_12_01_OpenAI_LLM_Streaming.ipynb │ ├── Graphlit_2024_12_13_Get_RAG_Pipeline_Details.ipynb │ ├── Graphlit_2024_12_13_RAG_without_Embeddings.ipynb │ ├── Graphlit_2024_12_25_Compare_RAG_Performance_between_OpenAI,_Groq,_Anthropic_and_more.ipynb │ ├── Graphlit_2024_12_28_Configure_LLM_fallbacks_between_OpenAI,_Groq,_and_Anthropic.ipynb │ └── Graphlit_2024_12_31_Anthropic_LLM_Streaming.ipynb ├── Retrieval │ ├── Graphlit_2024_09_03_Filter_Images_by_Collections.ipynb │ ├── Graphlit_2024_09_05_Monitor_Reddit_mentions.ipynb │ ├── Graphlit_2024_09_07_Locate_Google_Emails_by_Person.ipynb │ ├── Graphlit_2024_09_08_Describe_Related_Images_from_Web_Search.ipynb │ ├── Graphlit_2024_09_17_Describe_and_Map_Images.ipynb │ ├── Graphlit_2024_09_27_Multitenant_Content_Management.ipynb │ ├── Graphlit_2024_10_01_Compare_Multimodal_Image_Descriptions.ipynb │ ├── Graphlit_2024_10_08_Semantic_Search_from_PDF.ipynb │ ├── Graphlit_2024_12_09_Locate_Microsoft_Emails_by_Organization.ipynb │ └── Graphlit_2025_02_10_Retrieve_Content_Sources.ipynb ├── Summarization │ ├── Graphlit_2024_09_06_Summarize_Podcast.ipynb │ ├── Graphlit_2024_09_11_Slack_Research_Bot.ipynb │ └── Graphlit_2024_11_11_Multi_turn_Summarization.ipynb └── Web Crawling & Scraping │ └── Graphlit_2024_09_02_Scrape_Website.ipynb └── Streamlit ├── streamlit-multipage-chat-azure-blob-feed ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_Azure_Blob_Storage_Container.py │ ├── 2_Chat_With_Files.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-chat-file-comparison ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Upload_File.py │ ├── 2_Chat_With_File.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-chat-files-citations ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Upload_Files.py │ ├── 2_Chat_With_Files.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-chat-pdf ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_File.py │ ├── 2_Chat_With_File.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-extract-pdf-json ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── extract.py │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Upload_Document.py │ ├── 2_Assign_JSON_Schema.py │ ├── 3_Extract_JSON.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-extract-pdf ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Upload_Document.py │ ├── 2_View_Entities.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-extract-website-topics ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_Website.py │ ├── 2_Observe_Topics.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-files-graph ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ ├── graph_helpers.py │ └── helpers.py ├── pages │ ├── 100_Need_Help.py │ ├── 1_Upload_Files.py │ ├── 2_Visualize_Knowledge_Graph.py │ └── 3_Chat_With_Knowledge_Graph.py └── requirements.txt ├── streamlit-multipage-onedrive-graph ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ ├── graph_helpers.py │ └── helpers.py ├── pages │ ├── 100_Need_Help.py │ ├── 1_Ingest_OneDrive_Folder.py │ ├── 2_Visualize_Knowledge_Graph.py │ └── 3_Chat_With_Knowledge_Graph.py └── requirements.txt ├── streamlit-multipage-podcast-graph ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ ├── graph_helpers.py │ └── helpers.py ├── pages │ ├── 100_Need_Help.py │ ├── 1_Ingest_Podcast_RSS.py │ ├── 2_Visualize_Knowledge_Graph.py │ └── 3_Chat_With_Knowledge_Graph.py └── requirements.txt ├── streamlit-multipage-publish-github-issues ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── publish.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_GitHub_Issues.py │ ├── 2_Publish_Report.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-roast-me-audio-public ├── .gitignore ├── .streamlit │ └── config.toml ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── publish.py │ ├── session_state.py │ ├── sidebar.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ └── 1_Roast_Me.py └── requirements.txt ├── streamlit-multipage-sharepoint-graph ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── prompt.py │ ├── session_state.py │ └── sidebar.py ├── other │ ├── client.py │ ├── graph_helpers.py │ └── helpers.py ├── pages │ ├── 100_Need_Help.py │ ├── 1_Ingest_SharePoint_Folder.py │ ├── 2_Visualize_Knowledge_Graph.py │ └── 3_Chat_With_Knowledge_Graph.py └── requirements.txt ├── streamlit-multipage-summary-pdf ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ ├── summarize.py │ └── upload.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Upload_Document.py │ ├── 2_Summarize_Document.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-summary-podcast ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── summarize.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_Podcast.py │ ├── 2_Generate_Chapters.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-summary-reddit ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── summarize.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_Reddit.py │ ├── 2_Generate_Followup_Questions.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-summary-website ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── summarize.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_Website.py │ ├── 2_Summarize_Web_Pages.py │ └── 9_Need_Help.py └── requirements.txt ├── streamlit-multipage-summary-youtube ├── .gitignore ├── README.md ├── Start_Here.py ├── components │ ├── feed.py │ ├── header.py │ ├── session_state.py │ ├── sidebar.py │ └── summarize.py ├── other │ ├── client.py │ └── helpers.py ├── pages │ ├── 1_Ingest_YouTube_Video.py │ ├── 2_Generate_Chapters.py │ └── 9_Need_Help.py └── requirements.txt └── streamlit-multipage-web-graph ├── .gitignore ├── README.md ├── Start_Here.py ├── components ├── feed.py ├── header.py ├── prompt.py ├── session_state.py └── sidebar.py ├── other ├── client.py ├── graph_helpers.py └── helpers.py ├── pages ├── 100_Need_Help.py ├── 1_Ingest_Website.py ├── 2_Visualize_Knowledge_Graph.py └── 3_Chat_With_Knowledge_Graph.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/.gitignore -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/GraphlitIngest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/GraphlitIngest.csproj -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/GraphlitIngest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/GraphlitIngest.sln -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/Program.cs -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/Properties/PublishProfiles/linux-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/Properties/PublishProfiles/linux-x64.pubxml -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/README.md -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/appsettings.json -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/global.json -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/images/graphlit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/images/graphlit-logo.png -------------------------------------------------------------------------------- /dotnet/GraphlitIngest/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/GraphlitIngest/images/screenshot.png -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/.gitignore -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/GraphlitChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/GraphlitChat.csproj -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/GraphlitChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/GraphlitChat.sln -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/Program.cs -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/README.md -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/appsettings.json -------------------------------------------------------------------------------- /dotnet/SimpleChatExample/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/dotnet/SimpleChatExample/global.json -------------------------------------------------------------------------------- /nextjs/ask/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/.env.example -------------------------------------------------------------------------------- /nextjs/ask/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/.eslintrc.json -------------------------------------------------------------------------------- /nextjs/ask/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/.gitignore -------------------------------------------------------------------------------- /nextjs/ask/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .next 4 | -------------------------------------------------------------------------------- /nextjs/ask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/README.md -------------------------------------------------------------------------------- /nextjs/ask/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/fontawesome.ts -------------------------------------------------------------------------------- /nextjs/ask/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/next.config.mjs -------------------------------------------------------------------------------- /nextjs/ask/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/package-lock.json -------------------------------------------------------------------------------- /nextjs/ask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/package.json -------------------------------------------------------------------------------- /nextjs/ask/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs/ask/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/prettier.config.js -------------------------------------------------------------------------------- /nextjs/ask/public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/ask/public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/ask/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/images/favicon.ico -------------------------------------------------------------------------------- /nextjs/ask/public/images/graphlit-fun-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/images/graphlit-fun-logo-256.png -------------------------------------------------------------------------------- /nextjs/ask/public/images/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/images/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/ask/public/images/screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/public/images/screenshot.jpeg -------------------------------------------------------------------------------- /nextjs/ask/src/app/api/conversation/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/api/conversation/[id]/route.ts -------------------------------------------------------------------------------- /nextjs/ask/src/app/api/conversation/prompt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/api/conversation/prompt/route.ts -------------------------------------------------------------------------------- /nextjs/ask/src/app/api/conversation/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/api/conversation/route.ts -------------------------------------------------------------------------------- /nextjs/ask/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/globals.css -------------------------------------------------------------------------------- /nextjs/ask/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/app/page.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/ChatPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/ChatPlaceholder.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/Layout.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/Message.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/Navbar.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/PromptControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/PromptControls.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/icons/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/icons/DiscordIcon.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /nextjs/ask/src/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/theme/constants.ts -------------------------------------------------------------------------------- /nextjs/ask/src/theme/nextui/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/theme/nextui/common.js -------------------------------------------------------------------------------- /nextjs/ask/src/theme/nextui/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/theme/nextui/dark/index.js -------------------------------------------------------------------------------- /nextjs/ask/src/theme/nextui/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/theme/nextui/light/index.js -------------------------------------------------------------------------------- /nextjs/ask/src/theme/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/theme/opacity.ts -------------------------------------------------------------------------------- /nextjs/ask/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/types.ts -------------------------------------------------------------------------------- /nextjs/ask/src/types/react-copy-to-clipboard.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextjs/ask/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/src/utils.ts -------------------------------------------------------------------------------- /nextjs/ask/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/tailwind.config.ts -------------------------------------------------------------------------------- /nextjs/ask/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/ask/tsconfig.json -------------------------------------------------------------------------------- /nextjs/chat-graph/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/.env.example -------------------------------------------------------------------------------- /nextjs/chat-graph/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/.eslintrc.json -------------------------------------------------------------------------------- /nextjs/chat-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/.gitignore -------------------------------------------------------------------------------- /nextjs/chat-graph/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .next 4 | -------------------------------------------------------------------------------- /nextjs/chat-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/README.md -------------------------------------------------------------------------------- /nextjs/chat-graph/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/fontawesome.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/next.config.mjs -------------------------------------------------------------------------------- /nextjs/chat-graph/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/package-lock.json -------------------------------------------------------------------------------- /nextjs/chat-graph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/package.json -------------------------------------------------------------------------------- /nextjs/chat-graph/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs/chat-graph/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/prettier.config.js -------------------------------------------------------------------------------- /nextjs/chat-graph/public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/chat-graph/public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/chat-graph/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/public/images/favicon.ico -------------------------------------------------------------------------------- /nextjs/chat-graph/public/images/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/public/images/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/chat-graph/public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/public/images/screenshot.png -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/conversation/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/conversation/[id]/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/conversation/[id]/specification/[specId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/conversation/[id]/specification/[specId]/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/conversation/prompt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/conversation/prompt/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/conversation/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/conversation/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/files/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/files/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/specifications/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/specifications/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/api/workflows/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/api/workflows/route.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/globals.css -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/app/page.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/ChatPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/ChatPlaceholder.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/ConversationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/ConversationList.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/EChartsGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/EChartsGraph.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/FileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/FileCard.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/Graphbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/Graphbar.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/Layout.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/Message.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/Navbar.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/PromptControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/PromptControls.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/SpecificationSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/SpecificationSelect.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/components/icons/VercelIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/components/icons/VercelIcon.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/constants.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/context/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/context/Layout.tsx -------------------------------------------------------------------------------- /nextjs/chat-graph/src/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/theme/constants.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/theme/nextui/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/theme/nextui/common.js -------------------------------------------------------------------------------- /nextjs/chat-graph/src/theme/nextui/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/theme/nextui/dark/index.js -------------------------------------------------------------------------------- /nextjs/chat-graph/src/theme/nextui/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/theme/nextui/light/index.js -------------------------------------------------------------------------------- /nextjs/chat-graph/src/theme/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/theme/opacity.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/types.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/src/utils.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/tailwind.config.ts -------------------------------------------------------------------------------- /nextjs/chat-graph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat-graph/tsconfig.json -------------------------------------------------------------------------------- /nextjs/chat/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/.env.example -------------------------------------------------------------------------------- /nextjs/chat/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/.eslintrc.json -------------------------------------------------------------------------------- /nextjs/chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/.gitignore -------------------------------------------------------------------------------- /nextjs/chat/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .next 4 | -------------------------------------------------------------------------------- /nextjs/chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/README.md -------------------------------------------------------------------------------- /nextjs/chat/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/fontawesome.ts -------------------------------------------------------------------------------- /nextjs/chat/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/next.config.mjs -------------------------------------------------------------------------------- /nextjs/chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/package-lock.json -------------------------------------------------------------------------------- /nextjs/chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/package.json -------------------------------------------------------------------------------- /nextjs/chat/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs/chat/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/prettier.config.js -------------------------------------------------------------------------------- /nextjs/chat/public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/chat/public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/chat/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/public/images/favicon.ico -------------------------------------------------------------------------------- /nextjs/chat/public/images/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/public/images/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/chat/public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/public/images/screenshot.png -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/conversation/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/conversation/[id]/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/conversation/[id]/specification/[specId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/conversation/[id]/specification/[specId]/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/conversation/prompt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/conversation/prompt/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/conversation/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/conversation/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/files/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/files/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/api/specifications/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/api/specifications/route.ts -------------------------------------------------------------------------------- /nextjs/chat/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/globals.css -------------------------------------------------------------------------------- /nextjs/chat/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/app/page.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/ChatPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/ChatPlaceholder.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/ConversationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/ConversationList.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/FileCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/FileCard.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/Layout.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/Message.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/Navbar.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/PromptControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/PromptControls.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/SpecificationSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/SpecificationSelect.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/components/icons/VercelIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/components/icons/VercelIcon.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/constants.ts -------------------------------------------------------------------------------- /nextjs/chat/src/context/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/context/Layout.tsx -------------------------------------------------------------------------------- /nextjs/chat/src/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/theme/constants.ts -------------------------------------------------------------------------------- /nextjs/chat/src/theme/nextui/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/theme/nextui/common.js -------------------------------------------------------------------------------- /nextjs/chat/src/theme/nextui/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/theme/nextui/dark/index.js -------------------------------------------------------------------------------- /nextjs/chat/src/theme/nextui/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/theme/nextui/light/index.js -------------------------------------------------------------------------------- /nextjs/chat/src/theme/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/theme/opacity.ts -------------------------------------------------------------------------------- /nextjs/chat/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/types.ts -------------------------------------------------------------------------------- /nextjs/chat/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/src/utils.ts -------------------------------------------------------------------------------- /nextjs/chat/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/tailwind.config.ts -------------------------------------------------------------------------------- /nextjs/chat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/chat/tsconfig.json -------------------------------------------------------------------------------- /nextjs/file-extraction/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/.env.example -------------------------------------------------------------------------------- /nextjs/file-extraction/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/.eslintrc.json -------------------------------------------------------------------------------- /nextjs/file-extraction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/.gitignore -------------------------------------------------------------------------------- /nextjs/file-extraction/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .next 4 | -------------------------------------------------------------------------------- /nextjs/file-extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/README.md -------------------------------------------------------------------------------- /nextjs/file-extraction/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/fontawesome.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/next.config.mjs -------------------------------------------------------------------------------- /nextjs/file-extraction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/package-lock.json -------------------------------------------------------------------------------- /nextjs/file-extraction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/package.json -------------------------------------------------------------------------------- /nextjs/file-extraction/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs/file-extraction/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/prettier.config.js -------------------------------------------------------------------------------- /nextjs/file-extraction/public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/file-extraction/public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/file-extraction/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/public/images/favicon.ico -------------------------------------------------------------------------------- /nextjs/file-extraction/public/images/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/public/images/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/file-extraction/public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/public/images/screenshot.png -------------------------------------------------------------------------------- /nextjs/file-extraction/src/app/api/ingest/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/app/api/ingest/route.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/app/globals.css -------------------------------------------------------------------------------- /nextjs/file-extraction/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/app/page.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/components/Content.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/components/Layout.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/components/Navbar.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/components/icons/VercelIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/components/icons/VercelIcon.tsx -------------------------------------------------------------------------------- /nextjs/file-extraction/src/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/theme/constants.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/src/theme/nextui/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/theme/nextui/common.js -------------------------------------------------------------------------------- /nextjs/file-extraction/src/theme/nextui/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/theme/nextui/dark/index.js -------------------------------------------------------------------------------- /nextjs/file-extraction/src/theme/nextui/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/theme/nextui/light/index.js -------------------------------------------------------------------------------- /nextjs/file-extraction/src/theme/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/theme/opacity.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/src/types.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/tailwind.config.ts -------------------------------------------------------------------------------- /nextjs/file-extraction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/file-extraction/tsconfig.json -------------------------------------------------------------------------------- /nextjs/uppy/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/.env.example -------------------------------------------------------------------------------- /nextjs/uppy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/.gitignore -------------------------------------------------------------------------------- /nextjs/uppy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/README.md -------------------------------------------------------------------------------- /nextjs/uppy/app/api/auth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/app/api/auth/route.ts -------------------------------------------------------------------------------- /nextjs/uppy/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/uppy/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/app/page.tsx -------------------------------------------------------------------------------- /nextjs/uppy/components/UppyUploader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/components/UppyUploader.tsx -------------------------------------------------------------------------------- /nextjs/uppy/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/package-lock.json -------------------------------------------------------------------------------- /nextjs/uppy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/package.json -------------------------------------------------------------------------------- /nextjs/uppy/public/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/public/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/uppy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/uppy/tsconfig.json -------------------------------------------------------------------------------- /nextjs/web-extraction/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/.env.example -------------------------------------------------------------------------------- /nextjs/web-extraction/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/.eslintrc.json -------------------------------------------------------------------------------- /nextjs/web-extraction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/.gitignore -------------------------------------------------------------------------------- /nextjs/web-extraction/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .next 4 | -------------------------------------------------------------------------------- /nextjs/web-extraction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/README.md -------------------------------------------------------------------------------- /nextjs/web-extraction/fontawesome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/fontawesome.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/next.config.mjs -------------------------------------------------------------------------------- /nextjs/web-extraction/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/package-lock.json -------------------------------------------------------------------------------- /nextjs/web-extraction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/package.json -------------------------------------------------------------------------------- /nextjs/web-extraction/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/postcss.config.mjs -------------------------------------------------------------------------------- /nextjs/web-extraction/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/prettier.config.js -------------------------------------------------------------------------------- /nextjs/web-extraction/public/fonts/Hubot-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/public/fonts/Hubot-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/web-extraction/public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /nextjs/web-extraction/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/public/images/favicon.ico -------------------------------------------------------------------------------- /nextjs/web-extraction/public/images/graphlit-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/public/images/graphlit-logo.svg -------------------------------------------------------------------------------- /nextjs/web-extraction/public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/public/images/screenshot.png -------------------------------------------------------------------------------- /nextjs/web-extraction/src/app/api/crawl/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/app/api/crawl/route.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/src/app/api/scrape/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/app/api/scrape/route.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/app/globals.css -------------------------------------------------------------------------------- /nextjs/web-extraction/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/app/layout.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/app/page.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/components/Content.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/components/Layout.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/components/Navbar.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/components/icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/components/icons/GithubIcon.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/components/icons/VercelIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/components/icons/VercelIcon.tsx -------------------------------------------------------------------------------- /nextjs/web-extraction/src/theme/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/theme/constants.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/src/theme/nextui/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/theme/nextui/common.js -------------------------------------------------------------------------------- /nextjs/web-extraction/src/theme/nextui/dark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/theme/nextui/dark/index.js -------------------------------------------------------------------------------- /nextjs/web-extraction/src/theme/nextui/light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/theme/nextui/light/index.js -------------------------------------------------------------------------------- /nextjs/web-extraction/src/theme/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/theme/opacity.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/types.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/src/utils/validateUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/src/utils/validateUrl.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/tailwind.config.ts -------------------------------------------------------------------------------- /nextjs/web-extraction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/nextjs/web-extraction/tsconfig.json -------------------------------------------------------------------------------- /python/Notebook Examples/Agents/Graphlit_2024_09_21_CrewAI_Medical_AI_Agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Agents/Graphlit_2024_09_21_CrewAI_Medical_AI_Agent.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Agents/Graphlit_2024_09_22_CrewAI_Home_Inspection_Email.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Agents/Graphlit_2024_09_22_CrewAI_Home_Inspection_Email.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Agents/Graphlit_2024_09_23_CrewAI_Legal_AI_Agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Agents/Graphlit_2024_09_23_CrewAI_Legal_AI_Agent.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Agents/Graphlit_2024_12_07_CrewAI_Web_Marketing_Analyzer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Agents/Graphlit_2024_12_07_CrewAI_Web_Marketing_Analyzer.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Agents/Graphlit_2024_12_08_CrewAI_Product_Data_Extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Agents/Graphlit_2024_12_08_CrewAI_Product_Data_Extraction.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Classification/Graphlit_2024_12_24_Auto_Filter_Microsoft_Emails_in_Conversation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Classification/Graphlit_2024_12_24_Auto_Filter_Microsoft_Emails_in_Conversation.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Classification/Graphlit_2025_01_10_Configure_Email_Filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Classification/Graphlit_2025_01_10_Configure_Email_Filters.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Classification/Graphlit_2025_03_17_Classify_GitHub_Issues.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Classification/Graphlit_2025_03_17_Classify_GitHub_Issues.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Costs/Graphlit_2024_09_26_Analyze_Costs_&_Usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Costs/Graphlit_2024_09_26_Analyze_Costs_&_Usage.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Costs/Graphlit_2024_12_23_Analyze_Google_Drive_Feed_Ingestion_Costs_&_Usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Costs/Graphlit_2024_12_23_Analyze_Google_Drive_Feed_Ingestion_Costs_&_Usage.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Costs/Graphlit_2025_01_16_Analyze_Project_Costs_&_Usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Costs/Graphlit_2025_01_16_Analyze_Project_Costs_&_Usage.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Costs/Graphlit_2025_02_19_Analyze_Trello_Feed_Ingestion_Costs_&_Usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Costs/Graphlit_2025_02_19_Analyze_Trello_Feed_Ingestion_Costs_&_Usage.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_09_Generate_Knowledge_Graph_from_Web_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_09_Generate_Knowledge_Graph_from_Web_Search.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_10_GraphRAG_from_Web_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_10_GraphRAG_from_Web_Search.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_16_Explore_Conversational_Knowledge_Graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_16_Explore_Conversational_Knowledge_Graph.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_18_Explore_GitHub_Issues.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_18_Explore_GitHub_Issues.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_25_Connected_Data_Knowledge_Graph_Challenge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_09_25_Connected_Data_Knowledge_Graph_Challenge.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_10_05_Build_Medical_Conversational_Knowledge_Graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2024_10_05_Build_Medical_Conversational_Knowledge_Graph.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2025_03_13_Extract_Knowledge_Graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Extraction (Knowledge Graph)/Graphlit_2025_03_13_Extract_Knowledge_Graph.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_09_01_Extract_Markdown_from_PDF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_09_01_Extract_Markdown_from_PDF.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_10_28_Extract_Markdown_from_PDF_with_Vision_Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_10_28_Extract_Markdown_from_PDF_with_Vision_Models.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_12_24_Assign_Labels_at_Ingestion_Time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_12_24_Assign_Labels_at_Ingestion_Time.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_12_28_Assign_Labels_During_Ingestion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2024_12_28_Assign_Labels_During_Ingestion.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2025_02_19_Transcribe_Podcast_using_Assembly_AI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2025_02_19_Transcribe_Podcast_using_Assembly_AI.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Ingestion & Preparation/Graphlit_2025_02_26_Extract_Markdown_from_Web_Page_with_Vision_Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Ingestion & Preparation/Graphlit_2025_02_26_Extract_Markdown_from_Web_Page_with_Vision_Models.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Multimodal/Graphlit_2024_11_16_Describe_Image_with_Vision_LLM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Multimodal/Graphlit_2024_11_16_Describe_Image_with_Vision_LLM.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Multimodal/Graphlit_2024_11_24_Multi_turn_Analysis_of_Image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Multimodal/Graphlit_2024_11_24_Multi_turn_Analysis_of_Image.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Multimodal/Graphlit_2024_12_12_Describe_Image_with_OpenAI_Compatible_Moondream_Vision_LLM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Multimodal/Graphlit_2024_12_12_Describe_Image_with_OpenAI_Compatible_Moondream_Vision_LLM.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Other/Graphlit_2024_10_21_Configure_Embedding_Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Other/Graphlit_2024_10_21_Configure_Embedding_Model.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Other/Graphlit_2025_01_05_Ask_Graphlit.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Other/Graphlit_2025_01_05_Ask_Graphlit.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Other/Graphlit_2025_01_05_Query_Model_Cards.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Other/Graphlit_2025_01_05_Query_Model_Cards.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Other/Graphlit_2025_01_17_Configure_Workflow_Actions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Other/Graphlit_2025_01_17_Configure_Workflow_Actions.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_09_04_Publish_Summary_of_Web_Research.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_09_04_Publish_Summary_of_Web_Research.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_09_12_Publish_Audio_Review_of_Paper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_09_12_Publish_Audio_Review_of_Paper.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_09_14_Publish_Story_Graph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_09_14_Publish_Story_Graph.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_09_15_Publish_Audio_Summary_of_10_Q.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_09_15_Publish_Audio_Summary_of_10_Q.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_09_30_Publish_Podcast_Guest_Backgrounder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_09_30_Publish_Podcast_Guest_Backgrounder.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_12_27_Publish_Audio_Summary_of_Year_in_Review.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_12_27_Publish_Audio_Summary_of_Year_in_Review.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2024_12_29_Publish_Timeline_of_Year_in_Review.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2024_12_29_Publish_Timeline_of_Year_in_Review.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Publishing/Graphlit_2025_01_01_Publish_Graphlit_Year_in_Review.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Publishing/Graphlit_2025_01_01_Publish_Graphlit_Year_in_Review.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_13_Compare_RAG_strategies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_13_Compare_RAG_strategies.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_19_Web_Search_to_RAG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_19_Web_Search_to_RAG.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_20_FinanceBench_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_20_FinanceBench_evaluation.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_28_Explore_and_Search_Conversations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_28_Explore_and_Search_Conversations.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_29_Explore_GitHub_Repo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_09_29_Explore_GitHub_Repo.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_10_03_Using_Tools_with_Conversations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_10_03_Using_Tools_with_Conversations.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_10_25_Using_Tools_with_Conversations_for_User_Memory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_10_25_Using_Tools_with_Conversations_for_User_Memory.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_13_GraphRAG_from_Podcast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_13_GraphRAG_from_Podcast.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_24_Directly_Prompt_LLM_via_Conversation_Messages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_24_Directly_Prompt_LLM_via_Conversation_Messages.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_25_SharePoint_to_RAG.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_11_25_SharePoint_to_RAG.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_01_OpenAI_LLM_Streaming.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_01_OpenAI_LLM_Streaming.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_13_Get_RAG_Pipeline_Details.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_13_Get_RAG_Pipeline_Details.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_13_RAG_without_Embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_13_RAG_without_Embeddings.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_25_Compare_RAG_Performance_between_OpenAI,_Groq,_Anthropic_and_more.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_25_Compare_RAG_Performance_between_OpenAI,_Groq,_Anthropic_and_more.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_28_Configure_LLM_fallbacks_between_OpenAI,_Groq,_and_Anthropic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_28_Configure_LLM_fallbacks_between_OpenAI,_Groq,_and_Anthropic.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_31_Anthropic_LLM_Streaming.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/RAG & Conversations/Graphlit_2024_12_31_Anthropic_LLM_Streaming.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_03_Filter_Images_by_Collections.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_03_Filter_Images_by_Collections.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_05_Monitor_Reddit_mentions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_05_Monitor_Reddit_mentions.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_07_Locate_Google_Emails_by_Person.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_07_Locate_Google_Emails_by_Person.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_08_Describe_Related_Images_from_Web_Search.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_08_Describe_Related_Images_from_Web_Search.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_17_Describe_and_Map_Images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_17_Describe_and_Map_Images.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_09_27_Multitenant_Content_Management.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_09_27_Multitenant_Content_Management.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_10_01_Compare_Multimodal_Image_Descriptions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_10_01_Compare_Multimodal_Image_Descriptions.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_10_08_Semantic_Search_from_PDF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_10_08_Semantic_Search_from_PDF.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2024_12_09_Locate_Microsoft_Emails_by_Organization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2024_12_09_Locate_Microsoft_Emails_by_Organization.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Retrieval/Graphlit_2025_02_10_Retrieve_Content_Sources.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Retrieval/Graphlit_2025_02_10_Retrieve_Content_Sources.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Summarization/Graphlit_2024_09_06_Summarize_Podcast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Summarization/Graphlit_2024_09_06_Summarize_Podcast.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Summarization/Graphlit_2024_09_11_Slack_Research_Bot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Summarization/Graphlit_2024_09_11_Slack_Research_Bot.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Summarization/Graphlit_2024_11_11_Multi_turn_Summarization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Summarization/Graphlit_2024_11_11_Multi_turn_Summarization.ipynb -------------------------------------------------------------------------------- /python/Notebook Examples/Web Crawling & Scraping/Graphlit_2024_09_02_Scrape_Website.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Notebook Examples/Web Crawling & Scraping/Graphlit_2024_09_02_Scrape_Website.ipynb -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/1_Ingest_Azure_Blob_Storage_Container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/1_Ingest_Azure_Blob_Storage_Container.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/2_Chat_With_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/2_Chat_With_Files.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-azure-blob-feed/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-azure-blob-feed/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/pages/1_Upload_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/pages/1_Upload_File.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/pages/2_Chat_With_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/pages/2_Chat_With_File.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-file-comparison/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-file-comparison/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/pages/1_Upload_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/pages/1_Upload_Files.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/pages/2_Chat_With_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/pages/2_Chat_With_Files.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-files-citations/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-files-citations/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/pages/1_Ingest_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/pages/1_Ingest_File.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/pages/2_Chat_With_File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/pages/2_Chat_With_File.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-chat-pdf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-chat-pdf/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/components/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/components/extract.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/pages/1_Upload_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/pages/1_Upload_Document.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/pages/2_Assign_JSON_Schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/pages/2_Assign_JSON_Schema.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/pages/3_Extract_JSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/pages/3_Extract_JSON.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf-json/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf-json/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/pages/1_Upload_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/pages/1_Upload_Document.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/pages/2_View_Entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/pages/2_View_Entities.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-pdf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-pdf/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/pages/1_Ingest_Website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/pages/1_Ingest_Website.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/pages/2_Observe_Topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/pages/2_Observe_Topics.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-extract-website-topics/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-extract-website-topics/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/other/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/other/graph_helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/pages/100_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/pages/100_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/pages/1_Upload_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/pages/1_Upload_Files.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/pages/2_Visualize_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/pages/2_Visualize_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/pages/3_Chat_With_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/pages/3_Chat_With_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-files-graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-files-graph/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/other/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/other/graph_helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/pages/100_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/pages/100_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/pages/1_Ingest_OneDrive_Folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/pages/1_Ingest_OneDrive_Folder.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/pages/2_Visualize_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/pages/2_Visualize_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/pages/3_Chat_With_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/pages/3_Chat_With_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-onedrive-graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-onedrive-graph/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/other/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/other/graph_helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/pages/100_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/pages/100_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/pages/1_Ingest_Podcast_RSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/pages/1_Ingest_Podcast_RSS.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/pages/2_Visualize_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/pages/2_Visualize_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/pages/3_Chat_With_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/pages/3_Chat_With_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-podcast-graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-podcast-graph/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/components/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/components/publish.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/pages/1_Ingest_GitHub_Issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/pages/1_Ingest_GitHub_Issues.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/pages/2_Publish_Report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/pages/2_Publish_Report.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-publish-github-issues/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-publish-github-issues/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base = "dark" 3 | -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/components/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/components/publish.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/pages/1_Roast_Me.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/pages/1_Roast_Me.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-roast-me-audio-public/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-roast-me-audio-public/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/other/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/other/graph_helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/pages/100_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/pages/100_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/pages/1_Ingest_SharePoint_Folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/pages/1_Ingest_SharePoint_Folder.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/pages/2_Visualize_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/pages/2_Visualize_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/pages/3_Chat_With_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/pages/3_Chat_With_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-sharepoint-graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-sharepoint-graph/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/components/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/components/summarize.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/components/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/components/upload.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/pages/1_Upload_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/pages/1_Upload_Document.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/pages/2_Summarize_Document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/pages/2_Summarize_Document.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-pdf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-pdf/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/components/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/components/summarize.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/pages/1_Ingest_Podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/pages/1_Ingest_Podcast.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/pages/2_Generate_Chapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/pages/2_Generate_Chapters.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-podcast/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-podcast/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/components/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/components/summarize.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/pages/1_Ingest_Reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/pages/1_Ingest_Reddit.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/pages/2_Generate_Followup_Questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/pages/2_Generate_Followup_Questions.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-reddit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-reddit/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/components/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/components/summarize.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/pages/1_Ingest_Website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/pages/1_Ingest_Website.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/pages/2_Summarize_Web_Pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/pages/2_Summarize_Web_Pages.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-website/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-website/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/components/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/components/summarize.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/pages/1_Ingest_YouTube_Video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/pages/1_Ingest_YouTube_Video.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/pages/2_Generate_Chapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/pages/2_Generate_Chapters.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/pages/9_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/pages/9_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-summary-youtube/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-summary-youtube/requirements.txt -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/.gitignore -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/README.md -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/Start_Here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/Start_Here.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/components/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/components/feed.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/components/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/components/header.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/components/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/components/prompt.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/components/session_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/components/session_state.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/components/sidebar.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/other/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/other/client.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/other/graph_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/other/graph_helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/other/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/other/helpers.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/pages/100_Need_Help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/pages/100_Need_Help.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/pages/1_Ingest_Website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/pages/1_Ingest_Website.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/pages/2_Visualize_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/pages/2_Visualize_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/pages/3_Chat_With_Knowledge_Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/pages/3_Chat_With_Knowledge_Graph.py -------------------------------------------------------------------------------- /python/Streamlit/streamlit-multipage-web-graph/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphlit/graphlit-samples/HEAD/python/Streamlit/streamlit-multipage-web-graph/requirements.txt --------------------------------------------------------------------------------