-
-
Save gowatana/42c74b6739603ef9e19a9471fd311547 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -k -X 'POST' 'https://10.1.7.122/api/v1/chat/completions' \ | |
| -H "Authorization: Bearer $API_KEY" \ | |
| -H 'accept: application/json' \ | |
| -H 'Content-Type: application/json' \ | |
| -d '{ | |
| "model": "gemma-ep-01", | |
| "messages": [ | |
| { | |
| "role": "user", | |
| "content": "ごきげんよう" | |
| } | |
| ], | |
| "max_tokens": 256, | |
| "stream": false | |
| }' |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
下記の投稿むけ。
NAI 2.4 の推論エンドポイントを利用するデモ アプリを作成してみる。
https://blog.ntnx.jp/entry/2025/10/13/235604