Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,11 @@ import streamlit as st
|
|
2 |
import requests
|
3 |
import json
|
4 |
import os
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
# Define fact_check_statement function here...
|
7 |
def fact_check_statement(query, api_key):
|
|
|
2 |
import requests
|
3 |
import json
|
4 |
import os
|
5 |
+
import logging
|
6 |
+
|
7 |
+
# Set up logging
|
8 |
+
logging.basicConfig(level=logging.INFO)
|
9 |
+
logger = logging.getLogger(__name__)
|
10 |
|
11 |
# Define fact_check_statement function here...
|
12 |
def fact_check_statement(query, api_key):
|