Spaces:
Paused
Paused
tmzh
commited on
Commit
·
a4f227a
1
Parent(s):
b069e35
remove unnecessary LOC
Browse files
app.py
CHANGED
|
@@ -89,8 +89,6 @@ def query():
|
|
| 89 |
if request.method == 'POST':
|
| 90 |
query = request.form.get('query')
|
| 91 |
result = chatbot(query) # Call the chatbot function from agent.py
|
| 92 |
-
print("Got result: ", result)
|
| 93 |
-
print("Movie ids are: ", [r['id'] for r in result])
|
| 94 |
return render_template('query.html', result=result)
|
| 95 |
return render_template('query.html')
|
| 96 |
|
|
|
|
| 89 |
if request.method == 'POST':
|
| 90 |
query = request.form.get('query')
|
| 91 |
result = chatbot(query) # Call the chatbot function from agent.py
|
|
|
|
|
|
|
| 92 |
return render_template('query.html', result=result)
|
| 93 |
return render_template('query.html')
|
| 94 |
|
tools.py
CHANGED
|
@@ -15,46 +15,6 @@ tools = [
|
|
| 15 |
"type": "string",
|
| 16 |
"description": "Sort the results",
|
| 17 |
},
|
| 18 |
-
"certification_country": {
|
| 19 |
-
"type": "string",
|
| 20 |
-
"description": "Used in conjunction with the certification filter",
|
| 21 |
-
},
|
| 22 |
-
"certification": {
|
| 23 |
-
"type": "string",
|
| 24 |
-
"description": "Filter results with a valid certification from the certification_country",
|
| 25 |
-
},
|
| 26 |
-
"certification.lte": {
|
| 27 |
-
"type": "string",
|
| 28 |
-
"description": "Filter and only include movies that have a certification that is less than or equal to the specified value",
|
| 29 |
-
},
|
| 30 |
-
"certification.gte": {
|
| 31 |
-
"type": "string",
|
| 32 |
-
"description": "Filter and only include movies that have a certification that is greater than or equal to the specified value",
|
| 33 |
-
},
|
| 34 |
-
"include_adult": {
|
| 35 |
-
"type": "boolean",
|
| 36 |
-
"description": "Choose whether to include adult (pornography) content in the results",
|
| 37 |
-
},
|
| 38 |
-
"include_video": {
|
| 39 |
-
"type": "boolean",
|
| 40 |
-
"description": "Choose whether to include videos in the results",
|
| 41 |
-
},
|
| 42 |
-
"page": {
|
| 43 |
-
"type": "integer",
|
| 44 |
-
"description": "Specify which page to query",
|
| 45 |
-
},
|
| 46 |
-
"primary_release_year": {
|
| 47 |
-
"type": "integer",
|
| 48 |
-
"description": "Filter the results to only include movies that have a primary release year that equals the specified value",
|
| 49 |
-
},
|
| 50 |
-
"primary_release_date.gte": {
|
| 51 |
-
"type": "string",
|
| 52 |
-
"description": "Filter and only include movies that have a primary release date that is greater or equal to the specified value",
|
| 53 |
-
},
|
| 54 |
-
"primary_release_date.lte": {
|
| 55 |
-
"type": "string",
|
| 56 |
-
"description": "Filter and only include movies that have a primary release date that is less than or equal to the specified value",
|
| 57 |
-
},
|
| 58 |
"release_date.gte": {
|
| 59 |
"type": "string",
|
| 60 |
"description": "Filter and only include movies that have a release date (looking at all release dates) that is greater or equal to the specified value",
|
|
@@ -71,22 +31,6 @@ tools = [
|
|
| 71 |
"type": "integer",
|
| 72 |
"description": "Filter the results to only include movies that have a release year that equals the specified value",
|
| 73 |
},
|
| 74 |
-
"vote_count.gte": {
|
| 75 |
-
"type": "integer",
|
| 76 |
-
"description": "Filter and only include movies that have a vote count that is greater or equal to the specified value",
|
| 77 |
-
},
|
| 78 |
-
"vote_count.lte": {
|
| 79 |
-
"type": "integer",
|
| 80 |
-
"description": "Filter and only include movies that have a vote count that is less than or equal to the specified value",
|
| 81 |
-
},
|
| 82 |
-
"vote_average.gte": {
|
| 83 |
-
"type": "number",
|
| 84 |
-
"description": "Filter and only include movies that have a rating that is greater or equal to the specified value",
|
| 85 |
-
},
|
| 86 |
-
"vote_average.lte": {
|
| 87 |
-
"type": "number",
|
| 88 |
-
"description": "Filter and only include movies that have a rating that is less than or equal to the specified value",
|
| 89 |
-
},
|
| 90 |
"with_cast": {
|
| 91 |
"type": "string",
|
| 92 |
"description": "A comma separated list of person ID's to filter the results with",
|
|
@@ -119,34 +63,6 @@ tools = [
|
|
| 119 |
"type": "string",
|
| 120 |
"description": "A comma separated list of keyword ID's to exclude from the results",
|
| 121 |
},
|
| 122 |
-
"with_runtime.gte": {
|
| 123 |
-
"type": "integer",
|
| 124 |
-
"description": "Filter and only include movies that have a runtime that is greater or equal to the specified value",
|
| 125 |
-
},
|
| 126 |
-
"with_runtime.lte": {
|
| 127 |
-
"type": "integer",
|
| 128 |
-
"description": "Filter and only include movies that have a runtime that is less than or equal to the specified value",
|
| 129 |
-
},
|
| 130 |
-
"with_original_language": {
|
| 131 |
-
"type": "string",
|
| 132 |
-
"description": "Specify an ISO 639-1 string to filter results by their original language value",
|
| 133 |
-
},
|
| 134 |
-
"with_watch_providers": {
|
| 135 |
-
"type": "string",
|
| 136 |
-
"description": "A comma or pipe separated list of watch provider ID's to filter the results with",
|
| 137 |
-
},
|
| 138 |
-
"watch_region": {
|
| 139 |
-
"type": "string",
|
| 140 |
-
"description": "An ISO 3166-1 code to filter the watch provider results",
|
| 141 |
-
},
|
| 142 |
-
"with_watch_monetization_types": {
|
| 143 |
-
"type": "string",
|
| 144 |
-
"description": "Filter the results by monetization type",
|
| 145 |
-
},
|
| 146 |
-
"without_companies": {
|
| 147 |
-
"type": "string",
|
| 148 |
-
"description": "A comma separated list of production company ID's to filter the results with",
|
| 149 |
-
},
|
| 150 |
},
|
| 151 |
"required": [],
|
| 152 |
},
|
|
|
|
| 15 |
"type": "string",
|
| 16 |
"description": "Sort the results",
|
| 17 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
"release_date.gte": {
|
| 19 |
"type": "string",
|
| 20 |
"description": "Filter and only include movies that have a release date (looking at all release dates) that is greater or equal to the specified value",
|
|
|
|
| 31 |
"type": "integer",
|
| 32 |
"description": "Filter the results to only include movies that have a release year that equals the specified value",
|
| 33 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
"with_cast": {
|
| 35 |
"type": "string",
|
| 36 |
"description": "A comma separated list of person ID's to filter the results with",
|
|
|
|
| 63 |
"type": "string",
|
| 64 |
"description": "A comma separated list of keyword ID's to exclude from the results",
|
| 65 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
},
|
| 67 |
"required": [],
|
| 68 |
},
|