Skip to content

Commit

Permalink
add new message button easier to get to
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Sep 19, 2023
1 parent f3f7264 commit 920b93e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion database/seeders/TextToImageSeeder.php
Expand Up @@ -15,7 +15,7 @@ public function run(): void
{
$parameters = get_fixture_v2('text_for_image.json', false);
LlmFunction::create([
'label' => 'text_for_image',
'label' => 'text_to_image',
'description' => 'Use this function to convert and image to text',
'parameters' => $parameters,
]);
Expand Down
4 changes: 4 additions & 0 deletions resources/js/Layouts/AppLayout.vue
Expand Up @@ -65,6 +65,10 @@ const logout = () => {
:href="route('log-viewer.index')">
Logs
</a>
<a class="inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 hover:border-gray-300 dark:hover:border-gray-700 focus:outline-none focus:text-gray-700 dark:focus:text-gray-300 focus:border-gray-300 dark:focus:border-gray-700 transition duration-150 ease-in-out"
:href="route('messages.create')">
New Message
</a>
</div>
</div>

Expand Down

0 comments on commit 920b93e

Please sign in to comment.