pvanand commited on
Commit
9dbae8b
1 Parent(s): fe22029

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -9,7 +9,7 @@ from fastapi import FastAPI
9
  from pydantic import BaseModel
10
 
11
  # Retrieve environment variables
12
- TOGETHER_API_KEY = os.env("TOGETHER_API_KEY")
13
 
14
  SysPromptDefault = "You are an expert AI, complete the given task. Do not add any additional comments."
15
  SysPromptList = "You are now in the role of an expert AI who can extract structured information from user request. All elements must be in double quotes. You must respond ONLY with a valid python List. Do not add any additional comments."
 
9
  from pydantic import BaseModel
10
 
11
  # Retrieve environment variables
12
+ TOGETHER_API_KEY = os.getenv("TOGETHER_API_KEY")
13
 
14
  SysPromptDefault = "You are an expert AI, complete the given task. Do not add any additional comments."
15
  SysPromptList = "You are now in the role of an expert AI who can extract structured information from user request. All elements must be in double quotes. You must respond ONLY with a valid python List. Do not add any additional comments."