Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/691151cc-3da4-800f-9b7c-81b0e0d10369
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== Assistant: なるほどです。では、AI から返ってくる応答には "<|channel|analysis<|message|" や <|end|<|start|assistant<|channel|final<|message| などの制御トークンが含ま… === なるほどです。では、AI から返ってくる応答には "<|channel|>analysis<|message|>" や <|end|><|start|>assistant<|channel|>final<|message|> などの制御トークンが含まれます。 Eclipse に挿入するコードだけを抽出するには、最後の <code>final</code> の後に続く部分だけ取り出す処理を追加すると良いです。 ==== <syntaxhighlight lang="java">private String extractCodeFromAIResponse(String response) { ==== // "final" というキーワードの最後の出現位置を取得 int index = response.lastIndexOf("final"); if (index == -1) { // final が見つからなければそのまま返す return response.trim(); } // final の後に続く部分だけ取り出す String codePart = response.substring(index + "final".length()); // 不要な制御文字や空白を除去 return codePart.replaceAll("<\\|.*?\\|>", "").trim(); } </syntaxhighlight> ===== <syntaxhighlight lang="java">String aiTextRaw = response; // AIからの返答全体 ===== String aiText = extractCodeFromAIResponse(aiTextRaw); // カーソル位置に挿入 document.replace(cursorOffset, 0, aiText); </syntaxhighlight> ===== - lastIndexOf("final") で最後の final の後を取得 ===== * 正規表現で <|…|> の制御トークンを削除 * 前後の空白を trim して、純粋にコードだけを取得 * これで System.out.println("Hello World!"); のように、直接 Eclipse に挿入可能な文字列だけになります 希望であれば、この トークン除去処理も組み込んだ完全版 AISuggestHandler を作り、 Ctrl+Shift+Z で呼び出すと「AIが生成した純粋なコードだけをカーソル位置に挿入」できる形にできます。 作りますか?
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)