Skip to main content

An auto py builder for ChatBots on top of streamlit app's - LLaMa's powered APS

Project description

Fendi project

logo

Overview

Fendi is a powerful Python package designed to simplify the creation of a Streamlit-powered chatbot infused with AI capabilities. This chatbot extracts valuable information from user CVs and LinkedIn profiles, offering a personalized and interactive experience.

Features

  • AI-Powered Chatbot: Leverage advanced natural language processing (NLP) algorithms to create an intelligent and responsive chatbot.
  • CV Integration: Extract relevant information from user CVs to enhance the chatbot's understanding and responses.
  • ⚠️LinkedIn Data Integration: Utilize data from LinkedIn profiles to personalize the chatbot's interactions.[Only linkedin PDF resume for now ]
  • Streamlit App: Integrated with Streamlit, allowing for easy deployment and a user-friendly interface.
  • Customizable: Easily tailor the chatbot behavior and appearance to suit specific requirements.

Installation

Create you virtual environment using the following command (make sure that the virtual env is using py 3.10.13)

conda create -n myenv_39 python==3.10.13

Activate myenv_39:

conda activate myenv_39

Install the package using the following command:

pip install fendi

Desclaimer

This project does not aim to cover best practices for Python project development as a whole. For example, it does not provide guidance or tool recommendations for version control, documentation, or testing. Feel free to contact me directly, so that I can give you a walk through.

Getting Started

TL;DR

Colab Tutorial Just take a glimpse of this quick tutorial on Google Colab. Open In Collab

On

Make sure that you virtual environment is activated.

  1. Import Fendi in Your Python Script:
from fendi import fedi
  1. Define User Information:
info = {
   "Pronoun": "his",
   "Subject": "he"}

Feel free to adapt this to your specific needs, adding or removing fields as required.

⚠️ The top required ones are : Pronoun, Subject, Name, Full Name, Intro and About .

  1. Specify CV Path:
 cv_path = r"./Profile.pdf"

Again the resume file should be downloaded from the Linkedin, see next section for more details.

  1. Create Streamlit App:

Invoke the create_app function provided by Fendi:

 fedi.create_app(info, cv_path)
  1. Run Your Streamlit App:

Execute your Streamlit app script to launch the chatbot interface:

streamlit run your_script.py

⚠️ Replace your_script.py with the name of your Python script. ️⚠️

  1. Interact with the Chatbot: Open your web browser and navigate to the provided Streamlit URL: http://localhost:8501/. Interact with the chatbot by asking questions or providing input based on the user information.
  2. Explore Example Usage: Check out the example.py file

Example Script

from fendi import fedi

def main():
    info = {
       # ... (your personal information)
    }
    cv_path = r"./Profile.pdf"
    fedi.create_app(info, cv_path)

if __name__ == '__main__':
    main()

:warning: you should create a directory where you will put your script. It shall be this way:

Directory Structure:
.
├── example.py
│   (Description: Your main Python script or example file.)
└── Profile.pdf
    (Description: The Resume file you downloaded from LinkedIn.)

Contributions

Contributions to Fendi are welcome! Feel free to open issues or submit pull requests on the GitHub repository.

The source for this project is available here.


This is the README file for the project.

The PDF file should use UTF-8 encoding and can be downloaded from you Linkedin profile.

Your GIF

reStructuredText or markdown with the appropriate key set.

What's New

Nothing for now. But I won't be supporting this package for long. I use : reStructuredText or markdown with the appropriate key set.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

fendi-0.0.0.13-py3-none-any.whl (21.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page