Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dotpyu authored Dec 28, 2023
1 parent 46376c5 commit ed31d4c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
Test Status: ![test status](https://github.com/BatsResearch/alfred/actions/workflows/tests.yml/badge.svg?branch=main)

# News Update
- **[[Google Gemini](https://ai.google.dev/) Support]**
Gemini is here!
```python
gemini_pro = Client(model_type="google", model="gemini-pro", api_key=<your API key>)
```
- **[[GPT-4V](https://openai.com/research/gpt-4v-system-card) Support]**
Alfred now supports GPT-4V(ision). Use it to streamline your image annotation tasks! For example:
```python
Expand Down Expand Up @@ -68,15 +73,15 @@ If you find Alfred useful, please cite the following work. Thank you!
```bash
pip install -r requirements.txt
```
It is highly recommended to use anaconda to create a virtual environment in alternative to the above command
(Optional) It is highly recommended to use anaconda to create a virtual environment in alternative to the above command
```bash
conda create --name alfred
conda activate alfred
pip install -r requirements.txt
```
Run Alfred directly in its root directory or install it as a pip package at the end of the setup process.
```bash
pip3 install .
pip install -e .
```

### 2. Run and play with the model!
Expand Down

0 comments on commit ed31d4c

Please sign in to comment.