-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,16 +64,17 @@ pip install sotopia | |
<AccordionContent> | ||
<p>Install the nightly version with:</p> | ||
```bash | ||
git clone [email protected]:sotopia-lab/sotopia.git; | ||
curl -sSL https://install.python-poetry.org | python3; | ||
poetry install; | ||
``` | ||
</AccordionContent> | ||
</AccordionItem> | ||
<AccordionItem> | ||
<AccordionItem value="item-3"> | ||
<AccordionTrigger>Where to put my OpenAI/TogetherAI/Groq/Replicate API keys?</AccordionTrigger> | ||
<AccordionContent> | ||
Although API keys are not required for all the experiments, you need to use these keys when you use LLMs from these providers. | ||
For example, set the environment variable `OPENAI_API_KEY` to your key. The recommend way is to add the key to the conda environment: | ||
<p>Although API keys are not required for all the experiments, you need to use these keys when you use LLMs from these providers. | ||
For example, set the environment variable `OPENAI_API_KEY` to your key. The recommend way is to add the key to the conda environment:</p> | ||
```bash | ||
conda env config vars set OPENAI_API_KEY=your_key | ||
``` | ||
|