-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.http
84 lines (64 loc) · 1.43 KB
/
app.http
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
### POST Ask price demo step 1
# @timeout 600
POST http://localhost:8080/chatWithMemory
Content-Type: application/json
{
"prompt": "price"
}
###
### POST Ask price demo step 2
# @timeout 600
POST http://localhost:8080/chatWithMemory
Content-Type: application/json
{
"prompt": "btc and eth"
}
### POST Ask price demo step 3
# @timeout 600
POST http://localhost:8080/chatWithMemory
Content-Type: application/json
{
"prompt": "more other coins"
}
### POST Ask price demo step 4
# @timeout 600
POST http://localhost:8080/chatWithMemory
Content-Type: application/json
{
"prompt": "solana"
}
### POST Ask portfolio demo
# @timeout 600
POST http://localhost:8080/chat
Content-Type: application/json
{
"prompt": "what is my portfolio?"
}
### POST Ask portfolio with more detail demo
# @timeout 600
POST http://localhost:8080/chat
Content-Type: application/json
{
"prompt": "what is my portfolio and list my holding with quantity"
}
### POST Ask tickets demo
# @timeout 600
POST http://localhost:8080/chat
Content-Type: application/json
{
"prompt": "show my tickets"
}
### POST Ask tickets with details demo
# @timeout 600
POST http://localhost:8080/chat
Content-Type: application/json
{
"prompt": "show my tickets with related withdrawal"
}
### POST Ask tickets with details demo 2
# @timeout 600
POST http://localhost:8080/chat
Content-Type: application/json
{
"prompt": "show my tickets with related withdrawal and wallet address"
}