Skeleton UI
This commit is contained in:
51
config/config.yml
Executable file
51
config/config.yml
Executable file
@@ -0,0 +1,51 @@
|
||||
---
|
||||
|
||||
UI:
|
||||
theme: dark
|
||||
font_size: 12
|
||||
language: en
|
||||
|
||||
AI_Models:
|
||||
Image_Prompt_Generation:
|
||||
model: gpt-4
|
||||
system_prompt: "You are a prompt generation expert. Generate clear and concise prompts based on user input."
|
||||
temperature: 0.7
|
||||
max_tokens: 1500
|
||||
Image_model_to_use:
|
||||
model: stable-diffusion-v1-4
|
||||
guidance_scale: 7.5
|
||||
num_inference_steps: 50
|
||||
height: 512
|
||||
width: 512
|
||||
Image_Editing:
|
||||
model: stable-diffusion-inpainting
|
||||
guidance_scale: 7.5
|
||||
num_inference_steps: 50
|
||||
height: 512
|
||||
width: 512
|
||||
Video_Generation:
|
||||
model: video-diffusion-model
|
||||
guidance_scale: 7.5
|
||||
num_inference_steps: 50
|
||||
frame_rate: 24
|
||||
resolution: 720p
|
||||
Analyzer_Model:
|
||||
model: gpt-4
|
||||
system_prompt: "You are an expert image and video analyzer. Provide detailed descriptions and analyses."
|
||||
temperature: 0.7
|
||||
max_tokens: 1500
|
||||
|
||||
API_Endpoints:
|
||||
LLM_Provider: "OpenAI Compatible"
|
||||
Image_Generation_Provider: "ComfyUI API"
|
||||
Image_Editing_Provider: "ComfyUI API"
|
||||
Video_Generation_Provider: "ComfyUI API"
|
||||
Analyzer_Provider: "OpenAI Compatible"
|
||||
API_Keys:
|
||||
OpenAI_API_Key: "your_openai_api_key_here"
|
||||
ComfyUI_API_Key: "your_comfyui_api_key_here"
|
||||
Endpoints:
|
||||
OpenAI_Endpoint: "https://api.openai.com/v1"
|
||||
OpenAI_Compatible_Endpoint: "https://localhost:port/v1"
|
||||
ComfyUI_Endpoint: "http://localhost:8188/api/v1"
|
||||
|
||||
Reference in New Issue
Block a user