This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pydantic import BaseModel, Field | |
from datetime import date | |
import ollama | |
import requests | |
import json | |
import pandas as pd | |
class Query(BaseModel): | |
"""Data that we want collect from user to get weather data""" |