Skip to content

Commit d447eef

Browse files
committed
Updated LLM-complete to validate gh action prod flow
1 parent 5c40088 commit d447eef

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/production_run_complete_llm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ jobs:
5555
- name: Run pipeline, create pipeline, configure trigger (Production)
5656
working-directory: ./llm-complete-guide
5757
run: |
58-
python scripts/gh_action_rag.py --no-cache --create-template --action-id ${{ env.ZENML_ACTION_ID }}
58+
python gh_action_rag.py --no-cache --create-template --action-id ${{ env.ZENML_ACTION_ID }}

.github/workflows/staging_run_complete_llm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
- name: Run pipeline (Staging)
5353
working-directory: ./llm-complete-guide
5454
run: |
55-
python scripts/gh_action_rag.py --no-cache
55+
python gh_action_rag.py --no-cache

llm-complete-guide/scripts/gh_action_rag.py renamed to llm-complete-guide/gh_action_rag.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
#
17-
1817
from datetime import datetime
1918
from pathlib import Path
2019
from typing import Optional
@@ -23,7 +22,7 @@
2322
import click
2423
from zenml.client import Client
2524

26-
from pipelines import llm_basic_rag
25+
from pipelines.llm_basic_rag import llm_basic_rag
2726

2827

2928
@click.command(

0 commit comments

Comments
 (0)