Skip to content

Commit

Permalink
Replaced insensitive words
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Feb 10, 2025
1 parent 97e214f commit 9ef7f44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/config/valid_rhdh_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ lightspeed:
servers:
- id: ollama
url: http://localhost:11434/v1
token: dummy-token
token: placeholder-token
models:
- name: model-one
4 changes: 2 additions & 2 deletions tests/config/valid_rhdh_config_multiple_providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ lightspeed:
servers:
- id: ollama
url: http://localhost:11434/v1
token: dummy-token
token: placeholder-token
models:
- name: model-one
- id: new-cluster
url: http://localhost:8080
token: my-token
models:
- name: model-one
- name: model-one
2 changes: 1 addition & 1 deletion tests/unit/app/models/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3709,7 +3709,7 @@ def test_lightspeed_config_parsing():
},
True,
)
provider_one.credentials = "dummy-token"
provider_one.credentials = "placeholder-token"
provider_two.credentials = "my-token"

expected_providers = {"ollama": provider_one, "new-cluster": provider_two}
Expand Down

0 comments on commit 9ef7f44

Please sign in to comment.