Commit
·
d99a36b
1
Parent(s):
7abd251
updated: url format for other call types
Browse files
app.py
CHANGED
@@ -354,8 +354,12 @@ You should mention the Speaker Name first, then atleast 3 posts with their times
|
|
354 |
Return format is:
|
355 |
Speaker Name
|
356 |
1.Topic: topic,
|
357 |
-
[Timestamp: start_time - end_time]({link_start}://{{origin}}/collab/{{cid}}/{{rsid}}
|
358 |
2....
|
|
|
|
|
|
|
|
|
359 |
"""
|
360 |
|
361 |
completion = client.chat.completions.create(
|
|
|
354 |
Return format is:
|
355 |
Speaker Name
|
356 |
1.Topic: topic,
|
357 |
+
[Timestamp: start_time - end_time]({link_start}://{{origin}}/collab/{{cid}}/{{rsid}}?st={{start_time_in_sec}}&et={{end_time_in_sec}}"').
|
358 |
2....
|
359 |
+
For Example:
|
360 |
+
If the start time is 10:13 and end time is 10:18, the url will be:
|
361 |
+
{link_start}://roll.ai/colab/1234aq_12314/51234151?st=613&et=618
|
362 |
+
In the URL, make sure that after RSID there is ? and then rest of the fields are added via &.
|
363 |
"""
|
364 |
|
365 |
completion = client.chat.completions.create(
|