CryptoScoutv1
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ thread_to_user = {}
|
|
61 |
|
62 |
## /echo command to return the llm repsonse ##
|
63 |
|
64 |
-
@bot.hybrid_command(name="
|
65 |
async def chat(ctx, symbol: str, coin_name: str = None): # Add the optional parameter CoinName
|
66 |
if len(symbol) > 5:
|
67 |
await ctx.send("The symbol should be at most 5 characters long.")
|
@@ -71,9 +71,9 @@ async def chat(ctx, symbol: str, coin_name: str = None): # Add the optional par
|
|
71 |
try:
|
72 |
# Acknowledge the command immediately
|
73 |
if coin_name:
|
74 |
-
await ctx.send(f"
|
75 |
else:
|
76 |
-
await ctx.send(f"
|
77 |
|
78 |
loop = asyncio.get_running_loop()
|
79 |
client = await loop.run_in_executor(None, get_client, None)
|
|
|
61 |
|
62 |
## /echo command to return the llm repsonse ##
|
63 |
|
64 |
+
@bot.hybrid_command(name="cstradeadvisor", description="Enter the cryptocurrency TICKER or SYMBOL"")
|
65 |
async def chat(ctx, symbol: str, coin_name: str = None): # Add the optional parameter CoinName
|
66 |
if len(symbol) > 5:
|
67 |
await ctx.send("The symbol should be at most 5 characters long.")
|
|
|
71 |
try:
|
72 |
# Acknowledge the command immediately
|
73 |
if coin_name:
|
74 |
+
await ctx.send(f"Generating trade report for - {symbol} {coin_name}. Please wait 2-3 minutes."
|
75 |
else:
|
76 |
+
await ctx.send(f"Generating trade report for - {symbol}. Please wait 2-3 minutes.")
|
77 |
|
78 |
loop = asyncio.get_running_loop()
|
79 |
client = await loop.run_in_executor(None, get_client, None)
|