| | |
| | | password: gAAAAABnpFLtotY2OIRH12BJh4MzMgn5Zil7-DVpIeuqlFwvr0g6g_n4ULogn-LNhCbtk6cCDkzZlqAHvBSX2e_zf7AsoyzbiQ== |
| | | |
| | | workflow_server: |
| | | account: zqg@mail.com |
| | | password: gAAAAABnpCfh1IAlSg1wBn7xPjbiucm-YAyzrKygw4rQiRg267ZMrhIolE38n94E8GgOmWpFfQx3s79zdD6yUrIqOLa2YeW7eA== |
| | | account: admin@basic.com |
| | | password: gAAAAABnpFLtotY2OIRH12BJh4MzMgn5Zil7-DVpIeuqlFwvr0g6g_n4ULogn-LNhCbtk6cCDkzZlqAHvBSX2e_zf7AsoyzbiQ== |
| | |
| | | "rank": 105, |
| | | "dialog": [ |
| | | { |
| | | "id": "e476db7cbdbb11ef82b50242ac130006", |
| | | "chat_id": "e476db7cbdbb11ef82b50242ac130006", |
| | | "id": "6b8ee426c67511efb1510242ac1b0006", |
| | | "chat_id": "6b8ee426c67511efb1510242ac1b0006", |
| | | "chat_type": "knowledgeQA", |
| | | "agentType": 1 |
| | | } |
| | |
| | | "rank": 104, |
| | | "dialog": [ |
| | | { |
| | | "id": "90d533729c0211efbf6b0242ac160006", |
| | | "chat_id": "90d533729c0211efbf6b0242ac160006", |
| | | "id": "9727d6b0e78111efb10a0242ac1b0003", |
| | | "chat_id": "9727d6b0e78111efb10a0242ac1b0003", |
| | | "chat_type": "chat", |
| | | "agentType": 1 |
| | | } |
| | |
| | | |
| | | async def chat_ping(self, url, params, headers): |
| | | res = await self.http_get(url, params, headers) |
| | | return res.status_code |
| | | if res.status_code != 200: |
| | | return 0 |
| | | if res.json().get("code") == "unauthorized" or res.json().get("code") == 401: |
| | | return 0 |
| | | return 200 |
| | | |
| | | |
| | | async def chat_post(self, url, data, headers): |
| | |
| | | # ans = await chat.chat_parameters(url, params, headers) |
| | | # print(ans) |
| | | |
| | | ping_url = "http://192.168.20.119:13002/console/api/workspaces" |
| | | user_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNzBhNWVhZWYtYzU4Yi00YTE0LTliOGQtYWE2MzY0ZmE1ZDE3IiwiZXhwIjoxNzM5MjU2MDMyLCJpc3MiOiJTRUxGX0hPU1RFRCIsInN1YiI6IkNvbnNvbGUgQVBJIFBhc3Nwb3J0In0.tlxdRIVL2Ewgb0V4M5pj6v_U2yyvQxtCDrbvSxLjUBs" |
| | | token = "Bearer {}" |
| | | ping_url = "http://192.168.20.116:11080/v1/system/version" |
| | | # ping_url = "http://192.168.20.119:13002/console/api/workspaces" |
| | | user_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNjEzNzdiYzctZTViYy00YjhiLTgxYTYtNWZkOTVhODVlMmE4IiwiZXhwIjoxNzM5MjU3Njk1LCJpc3MiOiJTRUxGX0hPU1RFRCIsInN1YiI6IkNvbnNvbGUgQVBJIFBhc3Nwb3J0In0.w7xQrepd1dYR4iPXcbuthIZjdm45bTJFbolOM_SE9aQ" |
| | | # token = "Bearer {}" |
| | | token = "{}" |
| | | res = await chat.chat_ping(ping_url, {}, await chat.get_chat_headers(token.format(user_token))) |
| | | print(res) |
| | | |
| | |
| | | app.include_router(canvas_router, prefix='/api/canvas', tags=["canvas"]) |
| | | app.include_router(label_router, prefix='/api/label', tags=["label"]) |
| | | app.include_router(public_api, prefix='/v1/api', tags=["public_api"]) |
| | | app.include_router(chat_router_v2, prefix='/v1/chat', tags=["chat1"]) |
| | | app.include_router(chat_router_v2, prefix='/api/v1/chat', tags=["chat1"]) |
| | | app.mount("/static", StaticFiles(directory="app/images"), name="static") |
| | | |
| | | if __name__ == "__main__": |