Skip to content

Commit f20157a

Browse files
committed
Merge remote-tracking branch 'origin/main' into ben1/intelligence-threads-examples-rollout
2 parents e2cb8e3 + 809eb8e commit f20157a

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/social_copy-generator.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,10 @@ jobs:
176176
fetch-depth: 0
177177
persist-credentials: false
178178

179+
- name: Remove repository Claude settings
180+
if: steps.verify.outputs.should_run == 'true'
181+
run: rm -f .claude/settings.json .claude/settings.local.json .mcp.json
182+
179183
- name: Get PR diff
180184
if: steps.verify.outputs.should_run == 'true'
181185
id: diff

packages/runtime/src/v2/runtime/handlers/handle-run.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,6 @@ export async function handleRunAgent({
4343
configureAgentForRequest({ runtime, request, agentId, agent });
4444
await attachIntelligenceEnterpriseLearning({ runtime, request, agent });
4545

46-
if (
47-
runtime.licenseChecker &&
48-
!runtime.licenseChecker.checkFeature("agents")
49-
) {
50-
console.warn(
51-
'[CopilotKit Runtime] Warning: "agents" feature is not licensed. Visit copilotkit.ai/pricing',
52-
);
53-
}
54-
5546
const input = await parseRunRequest(request);
5647
if (input instanceof Response) {
5748
return input;

0 commit comments

Comments
 (0)