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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9e8983e2c22effab8a09ab797692425b22617a659a2120dea4ca17d0c4c539e
4
- data.tar.gz: 8311ced800943c7606457584c44a5b2d007425aff04bdf7de77d840944a5f0d6
3
+ metadata.gz: 54034ae264aab2f8c06d15e19777cb8e4d77db325a567370e832f5df74b21eef
4
+ data.tar.gz: b8deba140712b3133104b1fd03cead4441ae2632b2fb0d9417c122b04aa2b943
5
5
  SHA512:
6
- metadata.gz: 061d7ac2ae9620178592a652618ff06d6bb1f5fd02cfd0ebce062a521f72c970d39c91ee9ba3631ac5a78293920015e69f6160584a6225b458ecefa2a457aab9
7
- data.tar.gz: fbea37c2ef414c36f3dee867851868c30501f2afcb3a392c182e9147505b90015cb288f99fe0e255ffbd9dc3cf793ef0c38e721442e915e15a4730c34f214b74
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
 
@@ -1,3 +1,3 @@
1
1
  module ExercismConfig
2
- VERSION = '0.132.0'.freeze
2
+ VERSION = '0.133.0'.freeze
3
3
  end
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
- chatgpt_proxy_url: http://127.0.0.1:3026/ask_chatgpt
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
- chatgpt_proxy_url: http://local.exercism.io:3026/ask_chatgpt
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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exercism-config
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.132.0
4
+ version: 0.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker