fastGPT调用stable diffusion生成图片,本地模型使用ollama

打印 上一主题 下一主题

主题 959|帖子 959|积分 2877

ps:192.168.1.100换成你的ip
一、开器stable diffusion的api访问

Git上copy的项目,在启动web-ui.bat/sh时加上--api的启动参数.
  1. /web-ui.bat --api
复制代码
我这里使用的stabble-diffusion-docker构建的默认就开启了



http://192.168.1.100:7860/docs

二、FastGPT中调用stable diffusion

1、新建插件











2、修改http请求

①post请求地址

  1. http://192.168.1.100:7860/sdapi/v1/txt2img
复制代码
②body参数

  1. {
  2.   "prompt": "{{prompt}}",
  3.   "negative_prompt": "nsfw, paintings, cartoon, anime, sketches, worst quality, low quality, normal quality, lowres, watermark, monochrome, grayscale, ugly, blurry, Tan skin, dark skin, black skin, skin spots, skin blemishes, age spot, glans, disabled, bad anatomy, amputation, bad proportions, twins, missing body, fused body, extra head, poorly drawn face, bad eyes, deformed eye, unclear eyes, cross-eyed, long neck, malformed limbs, extra limbs, extra arms, missing arms, bad tongue, strange fingers, mutated hands, missing hands, poorly drawn hands, extra hands, fused hands, connected hand, bad hands, missing fingers, extra fingers, 4 fingers, 3 fingers, deformed hands, extra legs, bad legs, many legs, more than two legs, bad feet, extra feets, badhandv4, easynegative, FastNegativeV2, negative_hand-neg,ng_deepnegative_v1_75t, verybadimagenegative_v1.3",
  4.   "override_settings": {
  5.     "sd_model_checkpoint": "dreamshaper_8.safetensors",
  6.     "sd_vae": "vae-ft-mse-840000-ema-pruned.safetensors"
  7.   },
  8.   "seed": -1,
  9.   "subseed": -1,
  10.   "subseed_strength": 0,
  11.   "seed_resize_from_h": -1,
  12.   "seed_resize_from_w": -1,
  13.   "batch_size": 1,
  14.   "n_iter": 1,
  15.   "steps": 50,
  16.   "cfg_scale": 7,
  17.   "width": 512,
  18.   "height": 512,
  19.   "restore_faces": false,
  20.   "tiling": false,
  21.   "do_not_save_samples": false,
  22.   "do_not_save_grid": false,
  23.   "eta": 0,
  24.   "denoising_strength": 0,
  25.   "s_min_uncond": 0,
  26.   "s_churn": 0,
  27.   "s_tmax": 0,
  28.   "s_tmin": 0,
  29.   "s_noise": 0,
  30.   "override_settings_restore_afterwards": true,
  31.   "refiner_switch_at": 0,
  32.   "disable_extra_networks": false,
  33.   "comments": {},
  34.   "enable_hr": false,
  35.   "firstphase_width": 0,
  36.   "firstphase_height": 0,
  37.   "hr_scale": 2,
  38.   "hr_second_pass_steps": 0,
  39.   "hr_resize_x": 0,
  40.   "hr_resize_y": 0,
  41.   "hr_prompt": "",
  42.   "hr_negative_prompt": "",
  43.   "sampler_index": "Euler",
  44.   "script_args": [],
  45.   "send_images": true,
  46.   "save_images": true,
  47.   "alwayson_scripts": {}
  48. }
复制代码



3、增加AI对话生成提示词




4、增加文本拼接和指定回复




5、总的流程图



注意:使用插件那个输出删除不掉,最好用流程

三、乐成了




PS:调试接口(可以跳过)

1、使用apifox导入stable diffusion接口

项目设置->导入数据->新建数据源->立刻导入




2、调试接口










  1. {
  2.   "prompt": "a little cute house",
  3.   "negative_prompt": "nsfw, paintings, cartoon, anime, sketches, worst quality, low quality, normal quality, lowres, watermark, monochrome, grayscale, ugly, blurry, Tan skin, dark skin, black skin, skin spots, skin blemishes, age spot, glans, disabled, bad anatomy, amputation, bad proportions, twins, missing body, fused body, extra head, poorly drawn face, bad eyes, deformed eye, unclear eyes, cross-eyed, long neck, malformed limbs, extra limbs, extra arms, missing arms, bad tongue, strange fingers, mutated hands, missing hands, poorly drawn hands, extra hands, fused hands, connected hand, bad hands, missing fingers, extra fingers, 4 fingers, 3 fingers, deformed hands, extra legs, bad legs, many legs, more than two legs, bad feet, extra feets, badhandv4, easynegative, FastNegativeV2, negative_hand-neg,ng_deepnegative_v1_75t, verybadimagenegative_v1.3",
  4.   "override_settings": {
  5.     "sd_model_checkpoint": "dreamshaper_8.safetensors",
  6.     "sd_vae": "vae-ft-mse-840000-ema-pruned.safetensors"
  7.   },
  8.   "seed": -1,
  9.   "subseed": -1,
  10.   "subseed_strength": 0,
  11.   "seed_resize_from_h": -1,
  12.   "seed_resize_from_w": -1,
  13.   "batch_size": 1,
  14.   "n_iter": 1,
  15.   "steps": 50,
  16.   "cfg_scale": 7,
  17.   "width": 512,
  18.   "height": 512,
  19.   "restore_faces": false,
  20.   "tiling": false,
  21.   "do_not_save_samples": false,
  22.   "do_not_save_grid": false,
  23.   "eta": 0,
  24.   "denoising_strength": 0,
  25.   "s_min_uncond": 0,
  26.   "s_churn": 0,
  27.   "s_tmax": 0,
  28.   "s_tmin": 0,
  29.   "s_noise": 0,
  30.   "override_settings_restore_afterwards": true,
  31.   "refiner_switch_at": 0,
  32.   "disable_extra_networks": false,
  33.   "comments": {},
  34.   "enable_hr": false,
  35.   "firstphase_width": 0,
  36.   "firstphase_height": 0,
  37.   "hr_scale": 2,
  38.   "hr_second_pass_steps": 0,
  39.   "hr_resize_x": 0,
  40.   "hr_resize_y": 0,
  41.   "hr_prompt": "",
  42.   "hr_negative_prompt": "",
  43.   "sampler_index": "Euler",
  44.   "script_args": [],
  45.   "send_images": true,
  46.   "save_images": true,
  47.   "alwayson_scripts": {}
  48. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

忿忿的泥巴坨

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表