You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/examples/cohere_example/rerank.py
+17-4Lines changed: 17 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
importcohere
2
2
fromdotenvimportfind_dotenv, load_dotenv
3
+
fromdatetimeimportdatetime
3
4
4
5
fromlangtrace_python_sdkimportlangtrace
5
6
@@ -16,10 +17,22 @@
16
17
# @with_langtrace_root_span("embed_create")
17
18
defrerank():
18
19
docs= [
19
-
"Carson City is the capital city of the American state of Nevada.",
20
-
"The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
21
-
"Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
22
-
"Capital punishment (the death penalty) has existed in the United States since beforethe United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
20
+
{
21
+
"text": "Carson City is the capital city of the American state of Nevada.",
22
+
"date": datetime.now(),
23
+
},
24
+
{
25
+
"text": "The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.",
26
+
"date": datetime(2020, 5, 17),
27
+
},
28
+
{
29
+
"text": "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.",
30
+
"date": datetime(1776, 7, 4),
31
+
},
32
+
{
33
+
"text": "Capital punishment (the death penalty) has existed in the United States since before the United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states.",
@with_langtrace_root_span(name="Double Chain Of thought")
34
+
defmain():
35
+
multi_step_question="what is the capital of the birth state of the person who provided the assist for the Mario Gotze's in football world cup in 2014?"
0 commit comments