Skip to content

Commit

Permalink
Know-Genius
Browse files Browse the repository at this point in the history
  • Loading branch information
Arko-Sengupta committed Sep 16, 2024
1 parent 9724c89 commit d8f72de
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Frontend UI
TITLE="KnowGenius (AI-Chatbot)"

# API's
# Backend API
CHATBOT_API="http://localhost:5000/query"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@

# IGNORE Files
**__pycache__
2 changes: 1 addition & 1 deletion App.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import logging
import os
import requests
import streamlit as st
from dotenv import load_dotenv
Expand Down
2 changes: 1 addition & 1 deletion Chatbot_API.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import sys
import os
import logging
from flask import Blueprint, Flask, jsonify, request
from backend.src.SemanticAnalyzer import SemanticAnalyzer
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Welcome to _**KnowGenius**_! _**KnowGenius**_ is a _**Chabot**_ designed to answ
4. [Contribution](#contribution)

## Introduction
Your friendly guide to all things general knowledge. With just a chat away, dive into various topics and expand your understanding effortlessly. Say hello to KnowGenius and embark on a journey of learning made easy.
Your friendly guide to all things general knowledge. With just a chat away, dive into various topics and expand your understanding effortlessly. Say Hello to KnowGenius and embark on a journey of learning made easy.

## Getting Started
Before diving into the project, ensure you have the following prerequisites:
Expand Down
2 changes: 1 addition & 1 deletion backend/src/SemanticAnalyzer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
import json
import re
import logging
import pandas as pd
from nltk.corpus import wordnet, stopwords
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

def bootstrap_utils():
try:
# Define Custom CSS Style
# Define Custom CSS Styles
custom_css = """
<style>
.main {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Header.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def AppHeader(title):
# Initialize Utilities
bootstrap_utils()

# Define Custom CSS Styles
# Define Custom CSS Style
custom_css = """
<style>
.fs {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Message.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def Message(chat, is_user=False):
try:
# Initialize Utilities
# Initialize Utilitie
bootstrap_utils()

# Get the Current Date and Time
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
flask==3.0.3
nltk==3.9.1
pandas==2.2.2
pandas==2.2.1
python-dotenv==1.0.1
requests==2.32.3
scikit-learn==1.5.1
Expand Down

0 comments on commit d8f72de

Please sign in to comment.