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: なるほど、このエラーには 2つの別の原因 が含まれています。順に解説します。 === なるほど、このエラーには 2つの別の原因 が含まれています。順に解説します。 ==== - これは log4j が初期化されていない警告 です。 ==== * Eclipse プラグインやサードパーティライブラリで log4j を使っている場合に出ます。 * 致命的ではなく、動作に直接影響しないことが多いです。 * 対策: 1. クラスパスに log4j.properties を追加する ``<code>properties log4j.rootLogger=INFO, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d [%t] %-5p %c - %m%n </code>`` 2. 必要なければ無視しても OK ==== - HTTP 400 は「Bad Request」、つまりサーバ側に 送った JSON が不正 という意味です。 ==== * 原因: 1. JSON文字列が正しくエスケープされていない - 改行や "、\ のエスケープ不足 2. サーバ側が受け付けない形式のフィールドがある - 例:cursor_offset などはサーバ実装に依存 3. HTTP メソッドや Content-Type が間違っている ===== #### ===== * 今の例では単純に文字列置換で JSON を作っていますが、改行や " が含まれると壊れます。 * Gson を使って安全に JSON を生成する方法 が推奨です。 <syntaxhighlight lang="java">import com.google.gson.Gson; import java.util.HashMap; import java.util.Map; Gson gson = new Gson(); Map<String, Object> payload = new HashMap<>(); payload.put("model", "gpt-local"); payload.put("prompt", sourceCode); payload.put("cursor_offset", cursorOffset); payload.put("max_tokens", 200); String jsonRequest = gson.toJson(payload); </syntaxhighlight> * これで JSON のエスケープ問題は解決します。 ====== <syntaxhighlight lang="java">conn.setRequestProperty("Content-Type", "application/json; charset=UTF-8"); ====== </syntaxhighlight> ====== - /v1/completions に送る JSON が、サーバ側の仕様に合っているか確認 - 例:model フィールドが必須か - cursor_offset をサポートしているか ====== * もしサーバが OpenAI互換なら、prompt のみでもOKです。 ===== <syntaxhighlight lang="java">import com.google.gson.Gson; ===== // ... Gson gson = new Gson(); Map<String, Object> payload = new HashMap<>(); payload.put("model", "gpt-local"); payload.put("prompt", sourceCode); payload.put("cursor_offset", cursorOffset); payload.put("max_tokens", 200); String jsonRequest = gson.toJson(payload); HttpURLConnection conn = (HttpURLConnection) new URL(AI_SERVER_URL).openConnection(); conn.setDoOutput(true); conn.setRequestMethod("POST"); conn.setRequestProperty("Content-Type", "application/json; charset=UTF-8"); try (OutputStream os = conn.getOutputStream()) { os.write(jsonRequest.getBytes("UTF-8")); } </syntaxhighlight> * これで 400 エラーはほぼ確実に解消されます。 ==== | | | ==== | --- | --- | | | | | | | 希望であれば、私が AISuggestHandler を Gson で安全に JSON を作り、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)