Skip to content

Commit 64f3d8a

Browse files
committed
Added github as dependency to allow using repo
1 parent a7b30fc commit 64f3d8a

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

llm-complete-guide/configs/embeddings.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ settings:
2626
- rerankers[flashrank]
2727
- datasets
2828
- torch
29+
- github
2930
environment:
3031
ZENML_PROJECT_SECRET_NAME: llm_complete
3132

llm-complete-guide/configs/rag_eval.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ settings:
1212
- numpy
1313
- psycopg2-binary
1414
- tiktoken
15+
- github
1516

1617
# configuration of the Model Control Plane
1718
model:

llm-complete-guide/configs/rag_gcp.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ settings:
1212
- tiktoken
1313
- ratelimit
1414
- rerankers
15+
- github
1516
environment:
1617
ZENML_PROJECT_SECRET_NAME: llm_complete
1718
ZENML_ENABLE_RICH_TRACEBACK: FALSE

llm-complete-guide/configs/rag_local_dev.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ settings:
1414
- tiktoken
1515
- ratelimit
1616
- rerankers
17+
- github
1718
environment:
1819
ZENML_PROJECT_SECRET_NAME: llm_complete
1920
ZENML_ENABLE_RICH_TRACEBACK: FALSE

llm-complete-guide/configs/synthetic.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ settings:
2424
- datasets
2525
- torch
2626
- distilabel
27+
- github
2728
environment:
2829
ZENML_PROJECT_SECRET_NAME: llm_complete
2930

llm-complete-guide/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def main(
208208
config_path = os.path.join(
209209
os.path.dirname(os.path.realpath(__file__)),
210210
"configs",
211-
"rag_local_dev.yaml",
211+
config,
212212
)
213213

214214
if rag:

0 commit comments

Comments
 (0)