1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
|
# frozen_string_literal: true
require "net/http"
require "uri"
require "json"
require "securerandom"
require "fileutils"
require_relative "errors"
require_relative "message"
require_relative "response"
require_relative "tool_definition"
require_relative "model_info"
require_relative "base"
require_relative "rate_limiter"
require_relative "version"
module Dispatch
module Adapter
class Copilot < Base
VERSION = CopilotVersion::VERSION
API_BASE = "https://api.githubcopilot.com"
GITHUB_DEVICE_CODE_URL = "https://github.com/login/device/code"
GITHUB_ACCESS_TOKEN_URL = "https://github.com/login/oauth/access_token"
COPILOT_TOKEN_URL = "https://api.github.com/copilot_internal/v2/token"
CLIENT_ID = "Iv1.b507a08c87ecfe98"
MODEL_CONTEXT_WINDOWS = {
"gpt-4.1" => 1_047_576,
"gpt-4.1-mini" => 1_047_576,
"gpt-4.1-nano" => 1_047_576,
"gpt-4o" => 128_000,
"gpt-4o-mini" => 128_000,
"gpt-4" => 8_192,
"gpt-4-turbo" => 128_000,
"gpt-3.5-turbo" => 16_385,
"o1" => 200_000,
"o1-mini" => 128_000,
"o1-preview" => 128_000,
"o3" => 200_000,
"o3-mini" => 200_000,
"o4-mini" => 200_000,
"claude-3.5-sonnet" => 200_000,
"claude-3.7-sonnet" => 200_000,
"gemini-2.0-flash-001" => 1_048_576
}.freeze
STOP_REASON_MAP = {
"stop" => :end_turn,
"tool_calls" => :tool_use,
"length" => :max_tokens,
"content_filter" => :end_turn
}.freeze
VALID_THINKING_LEVELS = %w[low medium high].freeze
def initialize(model: "gpt-4.1", github_token: nil, token_path: nil, max_tokens: 8192, thinking: nil,
min_request_interval: 3.0, rate_limit: nil)
super()
@model = model
@github_token = github_token
@token_path = token_path || default_token_path
@default_max_tokens = max_tokens
@default_thinking = thinking
@copilot_token = nil
@copilot_token_expires_at = 0
@mutex = Mutex.new
validate_thinking_level!(@default_thinking)
rate_limit_path = File.join(File.dirname(@token_path), "copilot_rate_limit")
@rate_limiter = RateLimiter.new(
rate_limit_path: rate_limit_path,
min_request_interval: min_request_interval,
rate_limit: rate_limit
)
end
def chat(messages, system: nil, tools: [], stream: false, max_tokens: nil, thinking: :default, &)
ensure_authenticated!
wire_messages = build_wire_messages(messages, system)
wire_tools = build_wire_tools(tools)
effective_max_tokens = max_tokens || @default_max_tokens
effective_thinking = thinking == :default ? @default_thinking : thinking
validate_thinking_level!(effective_thinking)
body = {
model: @model,
messages: wire_messages,
max_tokens: effective_max_tokens,
stream: stream
}
body[:tools] = wire_tools unless wire_tools.empty?
body[:reasoning_effort] = effective_thinking if effective_thinking
if stream
chat_streaming(body, &)
else
chat_non_streaming(body)
end
end
def model_name
@model
end
def provider_name
"GitHub Copilot"
end
def max_context_tokens
MODEL_CONTEXT_WINDOWS[@model]
end
def list_models
ensure_authenticated!
@rate_limiter.wait!
uri = URI("#{API_BASE}/models")
request = Net::HTTP::Get.new(uri)
apply_headers!(request)
request["X-Github-Api-Version"] = "2025-10-01"
response = execute_request(uri, request)
data = parse_response!(response)
models = data["data"] || []
models.filter_map do |m|
next unless m["model_picker_enabled"]
next unless chat_model?(m)
build_model_info(m)
end
end
private
def validate_thinking_level!(level)
return if level.nil?
return if VALID_THINKING_LEVELS.include?(level)
raise ArgumentError,
"Invalid thinking level: #{level.inspect}. Must be one of: #{VALID_THINKING_LEVELS.join(", ")}, or nil"
end
def chat_model?(model_data)
capabilities = model_data["capabilities"]
return true unless capabilities
model_type = capabilities["type"]
return true if model_type.nil?
if model_type.is_a?(Array)
model_type.include?("chat")
else
model_type == "chat"
end
end
def build_model_info(model_data)
capabilities = model_data["capabilities"] || {}
supports = capabilities["supports"] || {}
limits = capabilities["limits"] || {}
billing = model_data["billing"] || {}
context_tokens = limits["max_context_window_tokens"] ||
MODEL_CONTEXT_WINDOWS.fetch(model_data["id"], 0)
ModelInfo.new(
id: model_data["id"],
name: model_data["name"] || model_data["id"],
max_context_tokens: context_tokens.to_i,
supports_vision: !!supports["vision"],
supports_tool_use: !!supports["tool_calls"],
supports_streaming: !!supports["streaming"],
premium_request_multiplier: billing["multiplier"]&.to_f
)
end
def default_token_path
File.join(Dir.home, ".config", "dispatch", "copilot_github_token")
end
# --- Authentication ---
def ensure_authenticated!
ensure_github_token!
ensure_copilot_token!
end
def ensure_github_token!
return if @github_token
@github_token = load_persisted_token
return if @github_token
@github_token = perform_device_flow
persist_token(@github_token)
end
def load_persisted_token
return nil unless File.exist?(@token_path)
token = File.read(@token_path).strip
token.empty? ? nil : token
end
def persist_token(token)
FileUtils.mkdir_p(File.dirname(@token_path))
File.write(@token_path, token)
File.chmod(0o600, @token_path)
end
def perform_device_flow
uri = URI(GITHUB_DEVICE_CODE_URL)
request = Net::HTTP::Post.new(uri)
request["Accept"] = "application/json"
request.set_form_data("client_id" => CLIENT_ID, "scope" => "copilot")
response = execute_request(uri, request)
data = parse_json_body(response)
device_code = data["device_code"]
user_code = data["user_code"]
verification_uri = data["verification_uri"]
interval = (data["interval"] || 5).to_i
warn "\n=== GitHub Device Authorization ==="
warn "Open: #{verification_uri}"
warn "Enter code: #{user_code}"
warn "Waiting for authorization...\n\n"
poll_for_access_token(device_code, interval)
end
def poll_for_access_token(device_code, interval)
loop do
sleep(interval)
uri = URI(GITHUB_ACCESS_TOKEN_URL)
request = Net::HTTP::Post.new(uri)
request["Accept"] = "application/json"
request.set_form_data(
"client_id" => CLIENT_ID,
"device_code" => device_code,
"grant_type" => "urn:ietf:params:oauth:grant-type:device_code"
)
response = execute_request(uri, request)
data = parse_json_body(response)
if data["access_token"]
return data["access_token"]
elsif data["error"] == "authorization_pending"
next
elsif data["error"] == "slow_down"
interval += 5
else
raise AuthenticationError.new(
"Device flow failed: #{data["error_description"] || data["error"]}",
provider: "GitHub Copilot"
)
end
end
end
def ensure_copilot_token!
@mutex.synchronize do
return if @copilot_token && Time.now.to_i < @copilot_token_expires_at - 60
uri = URI(COPILOT_TOKEN_URL)
request = Net::HTTP::Get.new(uri)
request["Authorization"] = "token #{@github_token}"
request["Accept"] = "application/json"
response = execute_request(uri, request)
unless response.is_a?(Net::HTTPSuccess)
raise AuthenticationError.new(
"Failed to obtain Copilot token: #{response.code} #{response.body}",
status_code: response.code.to_i,
provider: "GitHub Copilot"
)
end
data = parse_json_body(response)
@copilot_token = data["token"]
@copilot_token_expires_at = data["expires_at"].to_i
end
end
# --- HTTP helpers ---
def apply_headers!(request)
request["Authorization"] = "Bearer #{@copilot_token}"
request["Content-Type"] = "application/json"
request["Accept"] = "application/json"
request["Copilot-Integration-Id"] = "vscode-chat"
request["Editor-Version"] = "dispatch/#{VERSION}"
request["Openai-Intent"] = "conversation-panel"
end
def execute_request(uri, request)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = (uri.scheme == "https")
http.open_timeout = 30
http.read_timeout = 120
http.start { |h| h.request(request) }
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ETIMEDOUT,
Net::OpenTimeout, Net::ReadTimeout, SocketError => e
raise ConnectionError.new(
"Connection failed: #{e.message}",
provider: "GitHub Copilot"
)
end
def execute_streaming_request(uri, request)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = (uri.scheme == "https")
http.open_timeout = 30
http.read_timeout = 300
http.start do |h|
h.request(request) do |response|
handle_error_response!(response) unless response.is_a?(Net::HTTPSuccess)
yield(response)
end
end
rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ETIMEDOUT,
Net::OpenTimeout, Net::ReadTimeout, SocketError => e
raise ConnectionError.new(
"Connection failed: #{e.message}",
provider: "GitHub Copilot"
)
end
def parse_response!(response)
handle_error_response!(response) unless response.is_a?(Net::HTTPSuccess)
parse_json_body(response)
end
def parse_json_body(response)
JSON.parse(response.body)
rescue JSON::ParserError => e
raise RequestError.new(
"Invalid JSON response: #{e.message}",
provider: "GitHub Copilot"
)
end
def handle_error_response!(response)
code = response.code.to_i
body = response.body.to_s
message = begin
JSON.parse(body).dig("error", "message") || body
rescue JSON::ParserError
body
end
case code
when 401, 403
raise AuthenticationError.new(message, status_code: code, provider: "GitHub Copilot")
when 429
retry_after = response["Retry-After"]&.to_i
raise RateLimitError.new(message, status_code: code, provider: "GitHub Copilot", retry_after: retry_after)
when 400, 422
raise RequestError.new(message, status_code: code, provider: "GitHub Copilot")
when 500, 502, 503
raise ServerError.new(message, status_code: code, provider: "GitHub Copilot")
else
raise Error.new(message, status_code: code, provider: "GitHub Copilot")
end
end
# --- Message conversion ---
def build_wire_messages(messages, system)
wire = []
wire << { role: "system", content: system } if system
messages.each do |msg|
wire_msg = convert_message(msg)
if wire_msg.is_a?(Array)
wire.concat(wire_msg)
else
wire << wire_msg
end
end
merge_consecutive_roles(wire)
end
def convert_message(msg)
case msg.content
when String
{ role: msg.role, content: msg.content }
when Array
convert_content_blocks(msg)
else
{ role: msg.role, content: msg.content.to_s }
end
end
def convert_content_blocks(msg)
results = []
text_parts = []
tool_calls = []
msg.content.each do |block|
case block
when TextBlock
text_parts << block.text
when ImageBlock
raise NotImplementedError, "ImageBlock is not yet supported by the Copilot adapter"
when ToolUseBlock
tool_calls << {
id: block.id,
type: "function",
function: {
name: block.name,
arguments: JSON.generate(block.arguments)
}
}
when ToolResultBlock
results << {
role: "tool",
tool_call_id: block.tool_use_id,
content: tool_result_content(block)
}
end
end
if msg.role == "assistant" && !tool_calls.empty?
assistant_msg = { role: "assistant" }
assistant_msg[:content] = text_parts.join("\n") unless text_parts.empty?
assistant_msg[:tool_calls] = tool_calls
results.unshift(assistant_msg)
elsif !text_parts.empty?
results.unshift({ role: msg.role, content: text_parts.join("\n") })
end
results
end
def tool_result_content(block)
case block.content
when String
block.content
when Array
block.content.map(&:text).join("\n")
else
block.content.to_s
end
end
def merge_consecutive_roles(messages)
return messages if messages.empty?
merged = [messages.first.dup]
messages[1..].each do |msg|
prev = merged.last
if prev[:role] == msg[:role] && prev[:role] != "tool" && !msg.key?(:tool_calls) && !prev.key?(:tool_calls)
prev[:content] = [prev[:content], msg[:content]].compact.join("\n\n")
else
merged << msg.dup
end
end
merged
end
# --- Tool conversion ---
def build_wire_tools(tools)
tools.map do |td|
{
type: "function",
function: {
name: tool_attr(td, :name),
description: tool_attr(td, :description),
parameters: tool_attr(td, :parameters)
}
}
end
end
def tool_attr(tool, key)
if tool.respond_to?(key)
tool.public_send(key)
elsif tool.is_a?(Hash)
tool[key] || tool[key.to_s]
end
end
# --- Chat (non-streaming) ---
def chat_non_streaming(body)
@rate_limiter.wait!
uri = URI("#{API_BASE}/chat/completions")
request = Net::HTTP::Post.new(uri)
apply_headers!(request)
request.body = JSON.generate(body)
response = execute_request(uri, request)
data = parse_response!(response)
build_response(data)
end
def build_response(data)
choice = data["choices"]&.first
return empty_response(data) unless choice
message = choice["message"] || {}
content = message["content"]
tool_calls = (message["tool_calls"] || []).map do |tc|
func = tc["function"]
ToolUseBlock.new(
id: tc["id"],
name: func["name"],
arguments: parse_tool_arguments(func["arguments"])
)
end
stop_reason = STOP_REASON_MAP.fetch(choice["finish_reason"], :end_turn)
usage_data = data["usage"] || {}
usage = Usage.new(
input_tokens: usage_data["prompt_tokens"] || 0,
output_tokens: usage_data["completion_tokens"] || 0
)
Response.new(
content: content,
tool_calls: tool_calls,
model: data["model"] || @model,
stop_reason: stop_reason,
usage: usage
)
end
def empty_response(data)
usage_data = data["usage"] || {}
Response.new(
model: data["model"] || @model,
stop_reason: :end_turn,
usage: Usage.new(
input_tokens: usage_data["prompt_tokens"] || 0,
output_tokens: usage_data["completion_tokens"] || 0
)
)
end
def parse_tool_arguments(args_string)
return {} if args_string.nil? || args_string.empty?
JSON.parse(args_string)
rescue JSON::ParserError
{}
end
# --- Chat (streaming) ---
def chat_streaming(body, &block)
@rate_limiter.wait!
uri = URI("#{API_BASE}/chat/completions")
request = Net::HTTP::Post.new(uri)
apply_headers!(request)
request.body = JSON.generate(body)
collected = new_stream_collector
execute_streaming_request(uri, request) do |response|
buffer = +""
response.read_body do |chunk|
buffer << chunk
process_sse_buffer(buffer, collected, &block)
end
end
build_streaming_response(collected)
end
def new_stream_collector
{
content: +"",
tool_calls: {},
model: @model,
finish_reason: nil,
input_tokens: 0,
output_tokens: 0
}
end
def process_sse_buffer(buffer, collected, &)
while (line_end = buffer.index("\n"))
line = buffer.slice!(0..line_end).strip
next if line.empty?
next unless line.start_with?("data: ")
data_str = line.delete_prefix("data: ")
next if data_str == "[DONE]"
data = JSON.parse(data_str)
process_stream_chunk(data, collected, &)
end
rescue JSON::ParserError
# Incomplete JSON chunk, will be completed on next read
nil
end
def process_stream_chunk(data, collected, &)
collected[:model] = data["model"] if data["model"]
choice = data.dig("choices", 0)
return unless choice
collected[:finish_reason] = choice["finish_reason"] if choice["finish_reason"]
delta = choice["delta"] || {}
process_text_delta(delta, collected, &)
process_tool_call_deltas(delta, collected, &)
process_usage(data, collected)
end
def process_text_delta(delta, collected)
return unless delta["content"]
collected[:content] << delta["content"]
yield(StreamDelta.new(type: :text_delta, text: delta["content"]))
end
def process_tool_call_deltas(delta, collected)
return unless delta["tool_calls"]
delta["tool_calls"].each do |tc_delta|
index = tc_delta["index"]
tc = (collected[:tool_calls][index] ||= { id: nil, name: +"", arguments: +"" })
if tc_delta["id"]
tc[:id] = tc_delta["id"]
tc[:name] = tc_delta.dig("function", "name") || ""
yield(StreamDelta.new(
type: :tool_use_start,
tool_call_id: tc[:id],
tool_name: tc[:name]
))
end
next unless (arg_frag = tc_delta.dig("function", "arguments"))
next if arg_frag.empty?
tc[:arguments] << arg_frag
yield(StreamDelta.new(
type: :tool_use_delta,
tool_call_id: tc[:id],
argument_delta: arg_frag
))
end
end
def process_usage(data, collected)
return unless data["usage"]
collected[:input_tokens] = data["usage"]["prompt_tokens"] || collected[:input_tokens]
collected[:output_tokens] = data["usage"]["completion_tokens"] || collected[:output_tokens]
end
def build_streaming_response(collected)
tool_calls = collected[:tool_calls].values.map do |tc|
ToolUseBlock.new(
id: tc[:id],
name: tc[:name],
arguments: parse_tool_arguments(tc[:arguments])
)
end
stop_reason = STOP_REASON_MAP.fetch(collected[:finish_reason], :end_turn)
content = collected[:content].empty? ? nil : collected[:content]
Response.new(
content: content,
tool_calls: tool_calls,
model: collected[:model],
stop_reason: stop_reason,
usage: Usage.new(
input_tokens: collected[:input_tokens],
output_tokens: collected[:output_tokens]
)
)
end
end
end
end
|