Skip to content

Commit a8d1926

Browse files
committed
update
1 parent 580cd92 commit a8d1926

7 files changed

Lines changed: 8 additions & 4 deletions

File tree

docs_src/src/components/documentation/Navigation.jsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ export const navigation = [
320320
href: '/documentation/en/api_reference/mcps',
321321
title: 'MCPs',
322322
},
323+
{
324+
href: '/documentation/en/api_reference/agents',
325+
title: 'AI Agents',
326+
},
323327
],
324328
},
325329
{
@@ -450,6 +454,7 @@ const translations = {
450454
'Direct Rust Usage': 'Direct Rust Usage',
451455
'GraphQL Support': 'GraphQL Support',
452456
'Dependency Injection': 'Dependency Injection',
457+
'AI Agents': 'AI Agents',
453458
Talks: 'Talks',
454459
Blogs: 'Blogs',
455460
Introduction: 'Introduction',
@@ -492,6 +497,7 @@ const translations = {
492497
'Direct Rust Usage': '直接使用 Rust',
493498
'GraphQL Support': 'GraphQL 支持',
494499
'Dependency Injection': '依赖注入',
500+
'AI Agents': 'AI 代理',
495501
'Talks': '演讲',
496502
'Blogs': '博客',
497503
'Introduction': '引入',

robyn/integrations/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

robyn/integrations/langgraph.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

run_mcp_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run_unit_tests():
2222
print("=" * 40)
2323

2424
try:
25-
result = subprocess.run([sys.executable, 'test_mcp_manual.py'],
25+
result = subprocess.run([sys.executable, 'integration_tests/test_mcp_manual.py'],
2626
capture_output=True, text=True, timeout=60)
2727

2828
if result.returncode == 0:
@@ -62,7 +62,7 @@ def run_live_tests():
6262
print("=" * 45)
6363

6464
try:
65-
result = subprocess.run([sys.executable, 'test_mcp_live.py', 'full'],
65+
result = subprocess.run([sys.executable, 'integration_tests/test_mcp_live.py', 'full'],
6666
capture_output=True, text=True, timeout=120)
6767

6868
# Always show the output for live tests

0 commit comments

Comments
 (0)