Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#REQUIRED
HUD_API_KEY=your_hud_api_key_here


# Use whichever model/provider you run. It's OK to set both.
ANTHROPIC_API_KEY=your_anthropic_key_here
OPENAI_API_KEY=your_openai_key_here


# Optional: if you use cloud computers or other providers:
CUA_CLOUD_API_KEY=
COMPUTER_PROVIDER_API_KEY=
1 change: 1 addition & 0 deletions libs/python/agent/agent/adapters/models/internvl.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import annotations
from typing import List, Dict, Any, Optional

# Hugging Face imports are local to avoid hard dependency at module import
Expand Down
Loading