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
### Feature: new session options — citations, agent exclusions, and credit limits
11
+
12
+
Three new options are available on `SessionConfig` and `ResumeSessionConfig`. `enableCitations` (experimental) enables native model citations for supported providers; `excludedBuiltInAgents` hides named built-in agents from discovery; and `sessionLimits` sets a per-session AI-credit budget. ([#1865](https://github.com/github/copilot-sdk/pull/1865))
13
+
14
+
```java
15
+
SessionConfig config =newSessionConfig()
16
+
.setEnableCitations(true)
17
+
.setExcludedBuiltInAgents(List.of("copilot"))
18
+
.setSessionLimits(newSessionLimitsConfig(100.0));
19
+
```
20
+
21
+
### New contributors
22
+
23
+
-@coleflennikenmsft made their first contribution in [#1854](https://github.com/github/copilot-sdk/pull/1854)
24
+
-@szabta89 made their first contribution in [#1856](https://github.com/github/copilot-sdk/pull/1856)
0 commit comments