Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
This is a ChatGPT based prompt generation model for MidJorney. The purpose of this model is to simplify the creation of images and increase their creativity. By introducing a partial hint, ChatGPT creates a follow-up that can be used to stimulate creativity and provide new ideas.
| Date | Stars |
|---|---|
| 2026-07-24 | 341 |
| 2026-07-25 | 341 |
| 2026-07-28 | 341 |
| 2026-07-30 | 341 |
| 2026-08-06 | 341 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# ChatGPT-MidJourney-prompt
This is a ChatGPT based prompt generation model for MidJourney. The purpose of this model is to simplify the creation of images and increase their creativity. By introducing a partial hint, ChatGPT creates a follow-up that can be used to stimulate creativity and provide new ideas.
## What's new
>
> 24.03.2023
Create PyPi project. Update file structure, add api key authentication to ChatGPT.
__CLI-app and discord-bot will be available within a few days.__
## Installation
```bash
pip install chatGPTMidJourneyPrompt
```
## Usage
```py
from chatGPTMidJourneyPrompt.mjPrompt import PromptGenerator
# supported authorization methods: via email and password, via token, via api key
config = {
"email": "your_email",
"password": "your_password",
# or
"session_token": "your_session_token",
# or
"api_key": "your_api_key",
}
promptGenerator = PromptGenerator(config)
prompt = promptGenerator.V5("any text")
prompt = promptGenerator.V4("any text")
prompt = promptGenerator.niji("any text")
prompt = promptGenerator.testp("any text")
# or advanced usage if needed
promptConfig = {
"model": "artistic",
"type": "anime",
"renderer": "ray tracing",
"content": "character",
"aspect_ratio": "1:5",
"color": "red",
"url": "example image url",
}
prompt = promptGenerator.V5("any text", config=promptConfig, words=50)
```
## MiniMax Provider
You can use [MiniMax](https://www.minimax.io/) as an alternative LLM backend. MiniMax's M2.7 model offers a 204K context window and is accessed via an OpenAI-compatible API, so no extra SDK is required.
Set your API key via the environment variable or pass it in the config:
```bash
export MINIMAX_API_KEY="your_minimax_api_key"
```
```py
from chatGPTMidJourneyPrompt.mjPrompt import PromptGenerator
# Minimal config — reads MINIMAX_API_KEY from the environment
config = {"provider": "minimax"}
promptGenerator = PromptGenerator(config)
prompt = promptGenerator.V5("cyberpunk cityscape at night")
print(prompt)
# => cyberpunk city::5, neon lights::4, rain::3 --v 5 --s 1000 --q 2
# Full config with explicit key, model, and temperature
config = {
"provider": "minimax",
"minimax_api_key": "your_minimax_api_key",
"minimax_model": "MiniMax-M2.7", # or MiniMax-M2.7-highspeed, MiniMax-M2.5, MiniMax-M2.5-highspeed
"temperature": 0.7, # clamped to (0.0, 1.0]
}
promptGenerator = PromptGenerator(config)
prompt = promptGenerator.niji("samurai in the rain", config={"model": "artistic"})
```
Available MiniMax models:
| Model | Context | Speed |
|---|---|---|
| `MiniMax-M2.7` *(default)* | 204K | Standard |
| `MiniMax-M2.7-highspeed` | 204K | Fast |
| `MiniMax-M2.5` | 204K | Standard |
| `MiniMax-M2.5-highspeed` | 204K | Fast |
## More about config
### All config properties
|model|type|renderer|content|aspect_ratio|color|url|
|---|---|---|---|---|---|---|
|weights, artistic|anime, photorealistic, avatar, couple avatar|octane, unreal engine, ray tracing, mixed|character, landscape, object, light, particles|depends on the model|any|any|
### Aspect ratios
|V5|V4|niji|testp|
|---|---|---|---|
|any|1:1, 1:2, 2:1, 2:3, 3:2, 4:5, 5:4, 4:7, 7:4, 16:9, 9:16|1:2, 2:1|2:3, 3:2|
### Model properties support
|property|V5|V4|niji|testp|
|---|---|---|---|---|
|model|+|+|+|-|
|type|+|+|-|-|
|renderer|+|+|+|-|
|content|+|+|+|-|
|aspect_ratio|+|+|+|+|
|color|+|+|+|-|
|url|+|+|+|+|
<details>
<summary>
## Results
</summary>
_See more examples in my [gallery](https://github.com/awekrx/MidJourney-Arts)_
### Short-weights model
> prompt: `Sakura blossoms::5, pink flowers::4, Licorice plant::3, Japanese landscape::5, octane render::4, landscape desing::4, red::10, purple::10, , high quality photo::5, soft light::2, sharp-focus::3, hyper realism::4 --v 4 --s 1000 --q 5 --ar 16:9`

Excerpt of 5,714 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:6bedb95eccda1fab, topic:prompt-engineering, topic:prompt
matched fp:6bedb95eccda1fab, topic:text-to-image
matched fp:6bedb95eccda1fab, topic:chatgpt