jatinmehra commited on
Commit
b682b48
·
1 Parent(s): 5143d98

Update pyproject.toml to specify Python 3.12 and add OLLAMA_API_TOKEN to .env file creation

Browse files
Files changed (2) hide show
  1. pyproject.toml +0 -5
  2. setup_env.py +1 -0
pyproject.toml CHANGED
@@ -16,11 +16,6 @@ classifiers = [
16
  "Intended Audience :: Developers",
17
  "License :: OSI Approved :: MIT License",
18
  "Operating System :: OS Independent",
19
- "Programming Language :: Python :: 3",
20
- "Programming Language :: Python :: 3.8",
21
- "Programming Language :: Python :: 3.9",
22
- "Programming Language :: Python :: 3.10",
23
- "Programming Language :: Python :: 3.11",
24
  "Programming Language :: Python :: 3.12",
25
  "Topic :: Software Development :: Libraries :: Python Modules",
26
  "Topic :: Text Processing :: General"
 
16
  "Intended Audience :: Developers",
17
  "License :: OSI Approved :: MIT License",
18
  "Operating System :: OS Independent",
 
 
 
 
 
19
  "Programming Language :: Python :: 3.12",
20
  "Topic :: Software Development :: Libraries :: Python Modules",
21
  "Topic :: Text Processing :: General"
setup_env.py CHANGED
@@ -67,6 +67,7 @@ def create_env_file():
67
  if not env_file.exists():
68
  with open(env_file, "w") as f:
69
  f.write("GROQ_API_KEY=\n")
 
70
  logger.info("Created .env file")
71
 
72
  def main():
 
67
  if not env_file.exists():
68
  with open(env_file, "w") as f:
69
  f.write("GROQ_API_KEY=\n")
70
+ f.write("OLLAMA_API_TOKEN=\n")
71
  logger.info("Created .env file")
72
 
73
  def main():