Skip to content

Commit

Permalink
Minor Fixes & 5 more content promts added.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiten14 committed Oct 13, 2024
1 parent a6d3658 commit 50d2e6e
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ All notable changes to `jitone-ai` will be documented in this file.
## v0.1.3 - 2024-09-26

- Added placeholders to Ai Promt Fields.

## v0.1.4 - 2024-10-13

- Minor Fixes & 5 more content promts added.
33 changes: 22 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,6 @@
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/jiten14/jitone-ai/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/jiten14/jitone-ai/actions?query=workflow%3Arun-tests+branch%3Amain)
[![Total Downloads](https://img.shields.io/packagist/dt/jiten14/jitone-ai.svg?style=flat-square)](https://packagist.org/packages/jiten14/jitone-ai)

## What's New in Jitone AI v0.1.1

1. **Support for Multiple OpenAI Endpoints**:
- The latest OpenAI models, including the `gpt-4` and `gpt-3.5-turbo`, now use the **Chat API endpoint**, improving performance and response flexibility.
- The `gpt-3.5-turbo-instruct` model will continue using the **Completion API endpoint**.

2. **Completion Models Now Considered Legacy**:
- Please note that the models using the Completion endpoint, such as `gpt-3.5-turbo-instruct`, are now considered **legacy models**.
- We highly recommend trying out the latest models for improved results and future-proofing. You can explore them here: [OpenAI Models Documentation](https://platform.openai.com/docs/models).

## Installation

```bash
Expand Down Expand Up @@ -181,6 +171,7 @@ Jitone AI follows semantic versioning:
- **v0.1.0**: Initial release.
- **v0.1.1**: Added support for multiple OpenAI endpoints.
- **v0.1.3**: Added placeholders to Ai Promt Fields.
- **v0.1.4**: Minor Fixes & add 5 more content promts.

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Expand All @@ -198,7 +189,27 @@ If you discover any security vulnerabilities or bugs, please let us know so I ca

## Support

For support with this package or to report any issues, feel free to reach out [Jitendriya Tripathy](mailto:jitendriya14@gmail.com). I am happy to assist you!
For support with this package or to report any issues, feel free to reach out [Jitone AI Support](mailto:support@jiten.one). I am happy to assist you!

## Premium Version

**Key Features of JitoneAi Pro:**

- **AI Content Generation:** Access over 25 premium templates, categorized by use case. Select your content tone and generate tailored text effortlessly.

- **AI Image Generator:** Create stunning visuals using 25+ premium templates, each designed for specific use cases.

- **Text Modification Tools:** Refine, expand, shorten, summarize, translate, or correct grammar in existing text. Optimize titles for SEO or readability.

- **SEO Meta Description Generator:** Automatically generate SEO-friendly meta descriptions from your content.

- **Audio Transcription:** Convert uploaded audio into text with ease.

- **Text-to-Audio Conversion:** Transform your text into high-quality audio outputs.

- **JitoneAi Pro offers a one-time payment with lifetime updates and priority support.**

[Visit for more details about JitoneAI Pro](https://jitoneai.lemonsqueezy.com/buy/a51ffb2d-2ad1-4565-af29-4eebc645b499)

## Credits

Expand Down
10 changes: 10 additions & 0 deletions config/jitone-ai.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
'press_release_headline' => 'Create a newsworthy headline for a press release about [news item].',
'video_script_intro' => 'Write an engaging introduction for a video script about [topic].',
'podcast_episode_summary' => 'Summarize the key points of a podcast episode about [topic].',
'newsletter_cta' => 'Create a compelling call-to-action for a newsletter about [topic].',
'product_review_intro' => 'Write an engaging opening paragraph for a review of [product name].',
'event_invitation' => 'Craft a persuasive invitation text for [event name].',
'job_posting_summary' => 'Compose an attention-grabbing summary for a job posting seeking a [job title].',
'testimonial_request' => 'Write a friendly email requesting a testimonial from a customer who used [product/service].',
],

// Add Content Templates placeholders here
Expand All @@ -34,6 +39,11 @@
'press_release_headline' => 'Write the news item',
'video_script_intro' => 'Write the video topic',
'podcast_episode_summary' => 'Write the podcast topic',
'newsletter_cta' => 'Write Newsletter Topic',
'product_review_intro' => 'Write Product Name',
'event_invitation' => 'Write Event Name',
'job_posting_summary' => 'Write Job Title',
'testimonial_request' => 'Write Product or Service name',
],

'image_prompts' => [
Expand Down
8 changes: 0 additions & 8 deletions src/JitoneAiServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,6 @@ protected function checkDependencies(): void
$missingOrOutdated[] = "{$package} (installed: {$installedVersion}, requires {$version})";
}
}

if (!empty($missingOrOutdated)) {
Log::warning('JitoneAi: The following packages are missing or outdated:');
foreach ($missingOrOutdated as $package) {
Log::warning("- {$package}");
}
Log::warning('Please install or update these packages for full functionality.');
}
}

protected function isPackageInstalled(string $package): bool
Expand Down

0 comments on commit 50d2e6e

Please sign in to comment.