Skip to content

Commit

Permalink
Updated available rows of prompt input for Image and Video analyzers
Browse files Browse the repository at this point in the history
  • Loading branch information
aniturza committed Aug 29, 2024
1 parent 63f4d45 commit 782bc67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/AIHub/Views/ImageAnalyzer/ImageAnalyzer.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@
<h4 class="header-title">Image Analyzer with Azure OpenAI Services</h4>
<p class="text-muted font-14">
Optimize your visual content strategies using our service, which allows you to analyze your
images using the advanced artificial intelligence of GPT-4 and Azure Vision Services. Uncover
images using the advanced artificial intelligence of GPT-4o latest model. Uncover
patterns, gain meaningful insights, and improve your data-driven decision making with accurate
and comprehensive data provided by our system. Analyze your image using GPT4 and Azure Vision
Services.
and comprehensive data provided by our system. Analyze your image using GPT4o.
</p>

<div class="tab-content">
Expand All @@ -45,7 +44,7 @@
<div class="mb-3">
<label for="text" class="form-label">Prompt:</label>
<textarea class="form-control" id="text" name="text"
rows="3">@(Model.Prompt ?? "Describe the image in detail")</textarea>
rows="9">@(Model.Prompt ?? "Describe the image in detail")</textarea>
</div>
<div class="tab-content form-control">
<div class="tab-pane show active" id="file-upload-preview">
Expand Down
2 changes: 1 addition & 1 deletion src/AIHub/Views/VideoAnalyzer/VideoAnalyzer.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="mb-3">
<label for="text" class="form-label">Prompt:</label>
<textarea class="form-control" id="text" name="text"
rows="3">@(Model.Prompt ?? "Describe the video in detail")</textarea>
rows="9">@(Model.Prompt ?? "Describe the video in detail")</textarea>
</div>
<div class="tab-content form-control">
<div class="tab-pane show active" id="file-upload-preview">
Expand Down

0 comments on commit 782bc67

Please sign in to comment.