File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import color from '@heroku-cli/color'
22import { Command , flags } from '@heroku-cli/command'
33import * as Heroku from '@heroku-cli/schema'
44import { Args , ux } from '@oclif/core'
5+ // const Font = require('ascii-art-font')
6+ // Font.fontPath = '../../../lib/doctor/font'
57
68export default class DoctorAsk extends Command {
79 static description = 'recieve responses from HerokAI'
@@ -21,10 +23,11 @@ export default class DoctorAsk extends Command {
2123 const { body : user } = await this . heroku . get < Heroku . Account > ( '/account' , { retryAuth : false } )
2224 const userName = ( user && user . name ) ? ` ${ user . name } ` : ''
2325 const herokAIResponse = `${ color . heroku ( `Hi${ userName } ,` ) } \n\nI'm just a concept right now. Remember?`
26+ const herokAIJsonResponse = `Hi${ userName } , I'm just a concept right now. Remember?`
2427
2528 const dialogue = {
2629 question : args . question ,
27- response : herokAIResponse ,
30+ response : herokAIJsonResponse ,
2831 }
2932
3033 if ( flags . json ) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments