Skip to content

Commit 787b6ed

Browse files
committed
Update HR goal alignment app and README; add ignore rules
1 parent 0e5c984 commit 787b6ed

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
**/__pycache__/
22
venv/
3-
config.py
3+
**/config.py
44
.DS_Store
55
data/
6-
*.log
6+
*.log
7+
*.txt

ai/generative-ai-service/hr-goal-alignment/files/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The system integrates with Oracle Database and uses OCI's Generative AI models t
3939
│ └── inference.py
4040
├── goal_alignment_backend.py
4141
├── org_chart_backend.py
42-
├── Org_Chart.py
42+
├── org_chart.py
4343
├── pages/
4444
│ ├── course_recommendation_chatbot.py
4545
│ ├── goal_alignment_chatbot.py
@@ -83,7 +83,7 @@ Download and install Graphviz from https://graphviz.org/download/
8383
Ensure the Graphviz /bin directory is added to your system PATH.
8484
8585
### 4. Configure Oracle access
86-
Before running the application, you need to provide your Oracle Cloud Infrastructure (OCI) and Autonomous Database credentials.
86+
Before running the application, you need to provide your Oracle Cloud Infrastructure (OCI) and Autonomous Database credentials. This entails that you need to have an Oracle Autonomous Database set up in advance in order for this code to work.
8787
8888
1. Create a config file:
8989
copy the provided template to a new config file

ai/generative-ai-service/hr-goal-alignment/files/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
pages = {
1919
"Organization": [
20-
st.Page(str(Path("Org_Chart.py")), title="Org Chart Visualizer"),
20+
st.Page(str(Path("org_chart.py")), title="Org Chart Visualizer"),
2121
],
2222
"Employee": [
2323
st.Page(str(Path("pages") / "course_recommendation_chatbot.py")),

0 commit comments

Comments
 (0)