-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.py
More file actions
23 lines (14 loc) · 684 Bytes
/
Copy pathmain.py
File metadata and controls
23 lines (14 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
##© 2024 Tushar Aggarwal. All rights reserved.(https://tushar-aggarwal.com)
##OllamaLit [https://github.com/tushar2704/OllamaLit] (https://github.com/tushar2704/OllamaLit)
#######################################################################################################
#Importing dependecies
#######################################################################################################
import os
import sys
import ollama
import streamlit as st
from openai import OpenAI
from logging import getLogger
from src.utils import *
logger = getLogger(__name__)
#######################################################################################################