Edit model card

git lfs install git clone https://huggingface.co/spaces/MirageML/dreambooth

        import os
        import requests
          
        headers={"Authorization": f"Bearer {os.environ['EXHUMAN_API_KEY']}"}
          
        body = {
          'name': 'Elon Musk',
          'context': [
            {'turn': 'bot', 'message': 'Good morning!'},
            {'turn': 'user', 'message': 'hi how are you?'}
          ]
        
        }
        api_endpoint = "https://api.exh.ai/chatbot/v1/get_response"
          
        res = requests.post(api_endpoint, json=body, headers=headers)
        response = res.json()["response"]
        print(f"chatbot reply = {response}")
    
Downloads last month
0
Unable to determine this model’s pipeline type. Check the docs .

Dataset used to train Jeffreylex/Chatjeffrey