Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add recipe for saqqal/llm-integration-bundle #1674

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
llm_integration:
llm_provider: 'api_together'
llm_api_key: '%env(LLM_PROVIDER_API_KEY)%'
llm_model: '%env(LLM_MODEL)%'

Check failure on line 4 in saqqal/llm-integration-bundle/1.0/config/packages/llm_integration.yaml

View workflow job for this annotation

GitHub Actions / call-qa / Run checks

Should end with a newline
12 changes: 12 additions & 0 deletions saqqal/llm-integration-bundle/1.0/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"bundles": {
"Saqqal\\LlmIntegrationBundle\\LlmIntegrationBundle": ["all"]
},
"copy-from-recipe": {
"config/packages/": "%CONFIG_DIR%/packages/"
},
"env": {
"LLM_PROVIDER_API_KEY": "your_api_key_here",
"LLM_MODEL": "meta_llama_3_1_8b_instruct_turbo"
}
}

Check failure on line 12 in saqqal/llm-integration-bundle/1.0/manifest.json

View workflow job for this annotation

GitHub Actions / call-qa / Run checks

Should end with a newline
Loading