Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 1.21 KB

File metadata and controls

38 lines (24 loc) · 1.21 KB

RealEstate-Bot

A ChatBot for real estate based on Swift and Watson services

Real Estate Bot

Steps to Execute

  1. Create Credentials for Conversation services

  2. Create Credentials for Text-To-Speech services

  3. Create Credentials for Speech-To-Text services

  4. update the credentials.swift file

public struct Credentials {
    
    public static let ConversationUsername = “<conversation username>"
    public static let ConversationPassword = “<conversation password>"
    public static let ConversationWorkspace = “<conversation workspace id>"
    public static let SpeechToTextUsername = “<speech to text username>”
    public static let SpeechToTextPassword = “<speech to text password>"
    public static let TextToSpeechUsername = “<text to speech username>"
    public static let TextToSpeechPassword = “<text to speech password>"

}

  1. Open the project in Xcode
  2. Voila!

For more details see my blog here