Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

configs.py 216 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. import os
  2. from dotenv import find_dotenv, load_dotenv
  3. load_dotenv(find_dotenv())
  4. OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
  5. PALM_API_KEY = os.getenv("PALM_API_KEY")
  6. COHERE_API_KEY = os.getenv("COHERE_API_KEY")
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...