exercism-config 0.132.0 → 0.134.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: fe993510776176bab58bd7b3fa528ecadc014db49f2dec77e3492b8eb2281547
4
+ data.tar.gz: a7b4fdab21b0d45522834cc621a1fdb6cc3d80ca89678f2a831e54ffd2976f10
5
5
  SHA512:
6
- metadata.gz: 061d7ac2ae9620178592a652618ff06d6bb1f5fd02cfd0ebce062a521f72c970d39c91ee9ba3631ac5a78293920015e69f6160584a6225b458ecefa2a457aab9
7
- data.tar.gz: fbea37c2ef414c36f3dee867851868c30501f2afcb3a392c182e9147505b90015cb288f99fe0e255ffbd9dc3cf793ef0c38e721442e915e15a4730c34f214b74
6
+ metadata.gz: b2e3c204da2ac55738604eb26172ce32dece614cdee0e1de6b87543385eb1f33a8f2a413fb5fe00d2a64bb3441dad5b7cb5ae743a817bd0f69724ebf8f1c25e2
7
+ data.tar.gz: a3dffbe507c4bba51ad3e51385839bb1cd033c84bb345f401c52b124fde8304e6789967b3691c7eac7e07b8865816c997d1c4a4e142fd0118199aa79308d6436
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.134.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
 
@@ -30,6 +30,7 @@ mysql_port: <%= ENV["MYSQL_PORT"] %>
30
30
  # S3 Config
31
31
  aws_submissions_bucket: exercism-v3-submissions
32
32
  aws_tooling_jobs_bucket: exercism-v3-tooling-jobs
33
+ aws_cache_bucket: exercism-cache
33
34
 
34
35
  # Hosts
35
36
  website_icons_host: https://assets.exercism.org
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
 
@@ -31,6 +31,7 @@ mysql_port: null
31
31
  # S3 Config
32
32
  aws_submissions_bucket: exercism-v3-submissions
33
33
  aws_tooling_jobs_bucket: exercism-v3-tooling-jobs
34
+ aws_cache_bucket: exercism-cache
34
35
 
35
36
  # Hosts
36
37
  website_icons_host: https://assets.exercism.org
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.134.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Walker