Copilot スニペットハンドリング
GitHub Copilot は 大規模言語モデルを使用してコードを生成します。そして、大規模言語モデルにはトークンの制限があります。GitHub Copilot があなたのコード全てを見ていないことを理解する必要があります。
Description
Example
# タブ 1 (隣接)
def add_numbers(a, b):
return a + b# タブ 2
def subtract_numbers(a, b):
return a - b
answer = substruct_numbers(1, 2) + add_numbers( # <GitHub Copilot will suggest the code by reading the tab 1 >Exercise
Checklist for Further Learning
ノート
Last updated