File size: 7,805 Bytes
5492f08
20a3b47
909eff0
 
305d870
5492f08
c895ad2
909eff0
2a904c8
909eff0
2a904c8
 
2423cc9
909eff0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2423cc9
909eff0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6af6a99
909eff0
2423cc9
909eff0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6af6a99
909eff0
2423cc9
909eff0
 
 
 
 
 
 
6af6a99
2423cc9
909eff0
 
 
 
 
 
 
0c8daf3
909eff0
 
 
 
 
 
6af6a99
909eff0
 
2423cc9
909eff0
 
 
 
 
 
ffea555
 
 
 
 
 
 
 
 
 
 
 
 
 
909eff0
ffea555
909eff0
ffea555
 
 
909eff0
 
2a904c8
 
 
 
 
 
 
 
 
909eff0
 
5492f08
909eff0
 
11f6cf9
909eff0
 
 
f4666b2
909eff0
11f6cf9
909eff0
5492f08
909eff0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a904c8
909eff0
74502b9
909eff0
 
 
 
 
ffea555
909eff0
 
 
 
 
 
 
 
 
 
 
ffea555
 
909eff0
 
 
 
 
 
 
 
 
 
0c8daf3
909eff0
 
 
 
 
 
 
 
 
 
2a904c8
b48e6ab
5492f08
909eff0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
from flask import Flask, request, jsonify
import requests
import random
import string

app = Flask(__name__)

# -------------------------------------------------------------------
# Global variables to hold workspace, bot IDs, and cookie across requests
# -------------------------------------------------------------------
GLOBAL_WORKSPACE_ID = "wkspace_01JVCT7SCHHQBH0PTCQNTF6TYF"
GLOBAL_BOT_ID = "5d89e4f7-c1bd-4238-92c4-e4188e74fd49"
TOKEN = "Bearer bp_pat_vTuxol25N0ymBpYaWqtWpFfGPKt260IfT784"

# -------------------------------------------------------------------
# Helper functions for random bot/workspace names
# -------------------------------------------------------------------
def generate_random_name(length=5):
    return ''.join(random.choices(string.ascii_letters, k=length))


# -------------------------------------------------------------------
# Functions to create/delete workspaces and bots
# -------------------------------------------------------------------
def create_workspace():
    ws_url = "https://api.botpress.cloud/v1/admin/workspaces"
    headers = {
        "User-Agent": "Mozilla/5.0",
        "Authorization": TOKEN
    }
    payload = {"name": generate_random_name()}
    response = requests.post(ws_url, headers=headers, json=payload)

    if response.status_code == 200:
        response_json = response.json()
        return response_json.get('id')
    else:
        print(f"Workspace creation failed with: {response.status_code}, {response.text}")
        return None


def create_bot(workspace_id):
    bot_url = "https://api.botpress.cloud/v1/admin/bots"
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
        "x-workspace-id": workspace_id,
        "Authorization": TOKEN
    }
    payload = {"name": generate_random_name()}
    response = requests.post(bot_url, headers=headers, json=payload)

    if response.status_code == 200:
        response_json = response.json()
        bot_id = response_json.get("bot", {}).get("id")
        if not bot_id:
            print("Bot ID not found in the response.")
        return bot_id
    else:
        print(f"Bot creation failed with: {response.status_code}, {response.text}")
        return None


def delete_bot(bot_id, workspace_id):
    url = f"https://api.botpress.cloud/v1/admin/bots/{bot_id}"
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
        "x-workspace-id": workspace_id,
        "Authorization": TOKEN
    }
    return requests.delete(url, headers=headers)


def delete_workspace(workspace_id):
    url = f"https://api.botpress.cloud/v1/admin/workspaces/{workspace_id}"
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
        "Authorization": TOKEN
    }
    return requests.delete(url, headers=headers)


# -------------------------------------------------------------------
# Main function that calls the Botpress GPT-4 endpoint
# -------------------------------------------------------------------
def chat_with_assistant(user_input, image_url, bot_id, workspace_id):
    """
    Sends the user input and chat history to the Botpress GPT-4 endpoint,
    returns the assistant's response and (possibly updated) bot/workspace IDs.
    """
    # Prepare the headers
    headers = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
        "x-bot-id": bot_id,  # existing bot ID (could be None on first try)
        "Content-Type": "application/json",
        "Authorization": TOKEN
    }

    # Prepare the payload
    payload = {
        "prompt": {
            "model": "gpt-4o",
            "signatureVersion": "Jan-2024",
            "max_tokens": 1000,
            "temperature": 0.2,
            "messages": [
                {
                    "role": "user",
                    "content": [
                        {
                            "type": "text",
                            "text": user_input  # User-provided text
                        }
                    ]
                }
            ]
        },
        "variables": {},
        "options": {
            "origin": "agents/VisionAgent/0.1",
            "max_tokens": 100000
        }
    }

    # Add image to payload if provided
    if image_url:
        payload["prompt"]["messages"][0]["content"].append({
            "type": "image_url",
            "image_url": {
                "url": image_url
            }
        })

    botpress_url = "https://api.botpress.cloud/v1/cognitive/chat-gpt/query"

    try:
        response = requests.post(botpress_url, json=payload, headers=headers)

        if response.status_code == 200:
            data = response.json()
            assistant_content = data.get('choices', [{}])[0].get('message', {}).get('content', '')
            return assistant_content, bot_id, workspace_id
        elif response.status_code == 403:
            raise Exception("Invalid or expired bot ID.")
        else:
            return f"Error {response.status_code}: {response.text}", bot_id, workspace_id
    except Exception as e:
        if "Invalid or expired bot ID" in str(e):
            if bot_id and workspace_id:
                delete_bot(bot_id, workspace_id)
                delete_workspace(workspace_id)
            new_workspace = create_workspace()
            new_bot = create_bot(new_workspace)
            if not new_workspace or not new_bot:
                return "Failed to regenerate workspace or bot IDs.", None, None
            headers["x-bot-id"] = new_bot
            retry_response = requests.post(botpress_url, json=payload, headers=headers)
            if retry_response.status_code == 200:
                data = retry_response.json()
                assistant_content = data.get('choices', [{}])[0].get('message', {}).get('content', '')
                return assistant_content, new_bot, new_workspace
            else:
                return f"Error {retry_response.status_code}: {retry_response.text}", new_bot, new_workspace
        else:
            return f"Unexpected error: {str(e)}", bot_id, workspace_id


# Flask Endpoint
@app.route("/image", methods=["POST"])
def chat_endpoint():
    """
    Expects JSON with:
    {
      "user_input": "string",
      "image_url": "string"  # Optional: URL of the image
    }
    Returns JSON with:
    {
      "assistant_response": "string"
    }
    """
    global GLOBAL_WORKSPACE_ID, GLOBAL_BOT_ID

    # Parse JSON from request
    data = request.get_json(force=True)
    user_input = data.get("user_input", "")
    image_url = data.get("image_url", "")  # Optional image URL

    # If we don't yet have a workspace or bot, create them
    if not GLOBAL_WORKSPACE_ID or not GLOBAL_BOT_ID:
        GLOBAL_WORKSPACE_ID = create_workspace()
        GLOBAL_BOT_ID = create_bot(GLOBAL_WORKSPACE_ID)
        if not GLOBAL_WORKSPACE_ID or not GLOBAL_BOT_ID:
            return jsonify({"assistant_response": "Could not create workspace or bot."}), 500

    # Call our function that interacts with Botpress GPT-4
    assistant_response, updated_bot_id, updated_workspace_id = chat_with_assistant(
        user_input,
        image_url,  # Pass the image URL here
        GLOBAL_BOT_ID,
        GLOBAL_WORKSPACE_ID
    )

    # Update global IDs if they changed
    GLOBAL_BOT_ID = updated_bot_id
    GLOBAL_WORKSPACE_ID = updated_workspace_id

    return jsonify({"assistant_response": assistant_response})


# Run the Flask app
if __name__ == "__main__":
    app.run(host="0.0.0.0", port=7860, debug=True)