-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Titan Image Generator v2の新機能対応 #603
base: main
Are you sure you want to change the base?
Conversation
@@ -103,7 +103,7 @@ ${formValues[idx]} | |||
<div key={idx}> | |||
<div className="text-xs">{def.label}</div> | |||
<TextareaChatContent | |||
value={def.autoCopy ? content : formValues[idx] ?? ''} | |||
value={def.autoCopy ? content : (formValues[idx] ?? '')} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここ lint で修正されます。
taskType?: | ||
| BaseGenerationMode | ||
| 'COLOR_GUIDED_GENERATION' | ||
| 'BACKGROUND_REMOVAL'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
同じ定義が2回出現していますが、type として定義しても良いのではないでしょうか?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TitanImageV2GenerationMode(フロントエンドでTIGv2用に使っている方)には画面の表示わけ用にIMAGE_CONDITIONINGが入っていて、GenerateImageParams(バックエンドで使ってる方)にはIMAGE_CONDITIONINGがない(API的にはTEXT_IMAGEで受けている)んですよね。。。
@okamoto-aws |
Issue #, if available:
Description of changes:
に対応
詳細: https://aws.amazon.com/jp/blogs/news/amazon-titan-image-generator-v2-is-now-available-in-amazon-bedrock/
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.