exercism-config 0.132.0 → 0.133.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/exercism_config/version.rb +1 -1
- data/settings/ci.yml +1 -1
- data/settings/local.yml +1 -1
- data/settings/secrets.yml +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54034ae264aab2f8c06d15e19777cb8e4d77db325a567370e832f5df74b21eef
|
|
4
|
+
data.tar.gz: b8deba140712b3133104b1fd03cead4441ae2632b2fb0d9417c122b04aa2b943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '078267a2c405d101523090e73b5f97a268046d566a5de03c0fa07f2a163a6464c417dc555ed27fcaa6da8bd5d2a5ee073ca920fc3db4d19660ccd8ac5f15be8b'
|
|
7
|
+
data.tar.gz: aa752572631779e6d298f2a5b2492ce5fefc194880b131881368cae16f0c564bd30e91fb4e885a65d5a4c7fb28bac8221da947cc0932fc6b9350e936e8045750
|
data/README.md
CHANGED
|
@@ -25,6 +25,7 @@ Exercism.config.tooling_orchestrator_url
|
|
|
25
25
|
Exercism.config.language_server_url
|
|
26
26
|
Exercism.config.opensearch_host
|
|
27
27
|
Exercism.config.paypal_api_url
|
|
28
|
+
Exercism.config.assistant_chat_url
|
|
28
29
|
|
|
29
30
|
# Secrets
|
|
30
31
|
Exercism.secrets.github_access_token
|
|
@@ -61,6 +62,8 @@ Exercism.secrets.paypal_premium_yearly_plan_id
|
|
|
61
62
|
Exercism.secrets.paypal_lifetime_insiders_hosted_button_id
|
|
62
63
|
Exercism.secrets.chatgpt_access_token
|
|
63
64
|
Exercism.secrets.sparkpost_api_key
|
|
65
|
+
Exercism.secrets.assistant_chat_jwt_secret
|
|
66
|
+
Exercism.secrets.assistant_chat_hmac_secret
|
|
64
67
|
Exercism.secrets.openai_api_key
|
|
65
68
|
Exercism.secrets.openai_tags_model
|
|
66
69
|
|
data/settings/ci.yml
CHANGED
|
@@ -6,7 +6,7 @@ anycable_rpc_host: 127.0.0.1:50051
|
|
|
6
6
|
tooling_redis_url: redis://127.0.0.1:6379/3
|
|
7
7
|
snippet_generator_url: http://127.0.0.1:3024/extract_snippet
|
|
8
8
|
lines_of_code_counter_url: http://127.0.0.1:3025/count_lines_of_code
|
|
9
|
-
|
|
9
|
+
assistant_chat_url: http://127.0.0.1:3027
|
|
10
10
|
tooling_cloudwatch_jobs_log_group_name: "/tooling-jobs"
|
|
11
11
|
tooling_cloudwatch_jobs_log_stream_name: "general"
|
|
12
12
|
|
data/settings/local.yml
CHANGED
|
@@ -6,7 +6,7 @@ anycable_rpc_host: 127.0.0.1:50051
|
|
|
6
6
|
tooling_redis_url: redis://127.0.0.1:6379/3
|
|
7
7
|
snippet_generator_url: http://local.exercism.io:3024/extract_snippet
|
|
8
8
|
lines_of_code_counter_url: http://local.exercism.io:3025/count_lines_of_code
|
|
9
|
-
|
|
9
|
+
assistant_chat_url: http://local.exercism.io:3027
|
|
10
10
|
tooling_cloudwatch_jobs_log_group_name: "/tooling-jobs"
|
|
11
11
|
tooling_cloudwatch_jobs_log_stream_name: "general"
|
|
12
12
|
|
data/settings/secrets.yml
CHANGED
|
@@ -54,3 +54,9 @@ github_solution_syncer_private_key: "SOME-RSA-PRIVATE-KEY"
|
|
|
54
54
|
|
|
55
55
|
cloudflare_zone_id: "fake-cloudflare-zone-id"
|
|
56
56
|
cloudflare_api_token: "fake-cloudflare-api-token"
|
|
57
|
+
|
|
58
|
+
# Assistant chat (shared with the llm-chat-proxy Cloudflare Worker).
|
|
59
|
+
# These MUST match the worker's values byte-for-byte or every assistant
|
|
60
|
+
# message is rejected. Locally the worker reads them from its .dev.vars.
|
|
61
|
+
assistant_chat_jwt_secret: "some-assistant-chat-jwt-secret"
|
|
62
|
+
assistant_chat_hmac_secret: "some-assistant-chat-hmac-secret"
|