forked from rungalileo/sdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.example.env
More file actions
31 lines (23 loc) · 1.27 KB
/
Copy path.example.env
File metadata and controls
31 lines (23 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Example .env file — copy this file to .env and fill in the values.
# Be sure to add the .env file to your .gitignore file.
# **Required API Keys:**
# - **OpenAI API Key**: Get one at [https://platform.openai.com/api-keys](https://platform.openai.com/api-keys)
# - **NewsAPI Key**: Get one at [https://newsapi.org/register](https://newsapi.org/register) (for serious mode)
# - **Galileo API Key**: Get one at [https://console.galileo.ai/](https://console.galileo.ai/) (for observability)
# Galileo Environment Variables
GALILEO_API_KEY=your-galileo-api-key # Your Galileo API key.
GALILEO_PROJECT=your-galileo-project-name # Your Galileo project name.
GALILEO_LOG_STREAM=your-galileo-log-stream # The name of the log stream you want to use for logging.
# Provide the console url below if you are using a custom deployment, and not using app.galileo.ai
# GALILEO_CONSOLE_URL=your-galileo-console-url # Optional if you are using a hosted version of Galileo
# Required API Keys
OPENAI_API_KEY=sk-your-openai-key-here
NEWS_API_KEY=your-newsapi-key-here
# Optional LLM configuration
LLM_MODEL=gpt-4
LLM_TEMPERATURE=0.7
# Optional agent configuration
VERBOSITY=low # Options: none, low, high
ENVIRONMENT=development
ENABLE_LOGGING=true
ENABLE_TOOL_SELECTION=true