You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,3 +49,14 @@ AgentAdapter is a dual-language project containing both Python and TypeScript im
49
49
- Each language has its own dependencies and build process
50
50
- When making changes, ensure consistency across both implementations when applicable
51
51
- Consult the `docs/` directory for comprehensive reference materials before making architectural changes
52
+
53
+
## GitHub Workflow Secrets for Testing
54
+
55
+
When writing tests that require calling AI models, the following secrets are available in GitHub workflows:
56
+
57
+
-`ANTHROPIC_API_KEY` - API key for Anthropic SDK (Claude models)
58
+
-`GEMINI_API_KEY` - API key for Google Gemini SDK
59
+
-`OPENAI_API_KEY` - API key for OpenAI SDK
60
+
-`OPENAI_BASE_URL` - Base URL for OpenAI API (optional, for custom endpoints)
61
+
62
+
These secrets can be used in your test code to authenticate with the respective AI model providers. Make sure to handle these credentials securely and never log or expose them in test output.
0 commit comments