Spaces:
Sleeping
Sleeping
Aditya Patkar
commited on
Commit
•
30396cd
1
Parent(s):
1a04e30
Added module docstrings and clean up
Browse files- app.py +4 -0
- job_description_fixer.py +4 -0
- job_description_generator.py +4 -0
app.py
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_chat import message
|
3 |
|
|
|
1 |
+
'''
|
2 |
+
This is the main file of the app. This file contains the code for the streamlit app.
|
3 |
+
'''
|
4 |
+
|
5 |
import streamlit as st
|
6 |
from streamlit_chat import message
|
7 |
|
job_description_fixer.py
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
import os
|
2 |
import openai
|
3 |
from langchain.chat_models import ChatOpenAI
|
|
|
1 |
+
'''
|
2 |
+
This module contains the functions to generate a conversation object for job description fixer
|
3 |
+
'''
|
4 |
+
|
5 |
import os
|
6 |
import openai
|
7 |
from langchain.chat_models import ChatOpenAI
|
job_description_generator.py
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
import os
|
2 |
import openai
|
3 |
from langchain.chat_models import ChatOpenAI
|
|
|
1 |
+
'''
|
2 |
+
This module contains the functions to create conversation objects for job description generation
|
3 |
+
'''
|
4 |
+
|
5 |
import os
|
6 |
import openai
|
7 |
from langchain.chat_models import ChatOpenAI
|