juanpablomesa commited on
Commit
b2ddc25
1 Parent(s): 28fde2a

Update route layer data

Browse files
Files changed (1) hide show
  1. route_layer_data.json +42 -0
route_layer_data.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "routes": [
3
+ {
4
+ "name": "politics",
5
+ "utterances": [
6
+ "isn't politics the best thing ever",
7
+ "why don't you tell me about your political opinions",
8
+ "don't you just love the presidentdon't you just hate the president",
9
+ "they're going to destroy this country!",
10
+ "they will save the country!"
11
+ ],
12
+ "description": null,
13
+ "function_schema": null,
14
+ "llm": null,
15
+ "score_threshold": 0.3
16
+ },
17
+ {
18
+ "name": "chitchat",
19
+ "utterances": [
20
+ "how's the weather today?",
21
+ "how are things going?",
22
+ "lovely weather today",
23
+ "the weather is horrendous",
24
+ "let's go to the chippy"
25
+ ],
26
+ "description": null,
27
+ "function_schema": null,
28
+ "llm": null,
29
+ "score_threshold": 0.3
30
+ }
31
+ ],
32
+ "encoder": {
33
+ "type": "cohere",
34
+ "name": "embed-english-v3.0",
35
+ "score_threshold": 0.3
36
+ },
37
+ "tags": [
38
+ "semantic-router",
39
+ "RouteLayer",
40
+ "cohere"
41
+ ]
42
+ }